This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

error

hi sir
iam excuting this program in keil 51;

#include <math.h>
#include <stdio.h> /* for printf */
#include<reg51.h>

void tst_sqrt (void) {
float x;
float y;

x = 25.0;
y = sqrt (x); /* y = 5 */

printf ("SQRT(%f) = %f\n", x, y);
}

while doing this one Iam geting this errer

TO "ex3.c"
*** FATAL ERROR L210: I/O ERROR ON INPUT FILE:
EXCEPTION 0021H: PATH OR FILE NOT FOUND
FILE: C:\KEIL\C51\LIB\C51FPS.LIB
Target not created

why this error was comeing

regards

Parents
  • "iam excuting this program in keil 51"

    If it fails to compile, you cannot execute it!

    *** FATAL ERROR L210: I/O ERROR ON INPUT FILE:
    EXCEPTION 0021H: PATH OR FILE NOT FOUND
    FILE: C:\KEIL\C51\LIB\C51FPS.LIB
    C51FPS.LIB is the Floating Point maths library. I'll bet you're trying to use Floating Point maths with the free Evaluation version, aren't you?

Reply
  • "iam excuting this program in keil 51"

    If it fails to compile, you cannot execute it!

    *** FATAL ERROR L210: I/O ERROR ON INPUT FILE:
    EXCEPTION 0021H: PATH OR FILE NOT FOUND
    FILE: C:\KEIL\C51\LIB\C51FPS.LIB
    C51FPS.LIB is the Floating Point maths library. I'll bet you're trying to use Floating Point maths with the free Evaluation version, aren't you?

Children
No data