Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / arif
"stdio.h" C compiler-preprocessor search the header file in the current directory
<stdio.h> C preprocessor search the header file in all the directories
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
How can I do graphics in c?
Do variables need to be initialized?
When should you use a type cast?
How can you increase the allowable number of simultaneously open files?
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
Why main is used in c?
Do you know what are bitwise shift operators in c programming?
What is return type in c?
What is the purpose of realloc()?
Explain the difference between ++u and u++?
How can you convert integers to binary or hexadecimal?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
Write a factorial program using C.
What are the benefits of c language?