What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / the great elango
# is a symbol, that represent to the complier,the header
files are includes in the program.....include key word is
using to include the header files in c
| Is This Answer Correct ? | 48 Yes | 34 No |
Post New Answer View All Answers
Place the #include statement must be written in the program?
What is use of integral promotions in c?
Why c is called object oriented language?
Can true be a variable name in c?
What are operators in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
How can I pad a string to a known length?
What is extern c used for?
Explain the ternary tree?
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
Why & is used in c?
What is the difference between struct and typedef struct in c?
What is action and transformation in spark?
What is array in c with example?