Answer Posted / rusmguys
# is preprocessor which tell compiler that what header
file we using in our program.
for example:
#include<stdio.h>
void main()
in the above when compiler check program it start execution
of program from main and will tell that uor header file
is "standard input output header file"
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is the maximum no. of arguments that can be given in a command line in C.?
What is the basic structure of c?
What is pointers in c?
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
What is the difference between NULL and NUL?
What is a pointer variable in c language?
What does d mean?
How can you find out how much memory is available?
What are reserved words?
What standard functions are available to manipulate strings?
What is cohesion and coupling in c?
How do you determine a file’s attributes?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What does it mean when a pointer is used in an if statement?
What is the easiest sorting method to use?