How to resolve this problem?

I have this error:
Code:
error: stdio.h: No such file or directory
warning: implicit declaration of function 'scanf'
warning: nested extern declaration of 'scanf'

How can I resolve this problem?
 
Please post your code. We're good but we're not clairvoyant.
 
Your compiler isn't finding the included files. Tell the compiler where the file is located.

Two hints:
a) read the error messages.

b) read the man-pages.

These two hints will help you solve a lot of your own problems in future.
 
fonz said:
Swing and a miss. Please read the question.

Yes, the include is surely in place, simply the compiler does not know where it is. Maybe your include path is wrong? We need the compiling command to dig more.
 
Back
Top