What is the relation between # and include<stdio.h>
Answer Posted / anjali
# indicates the directive preprocessor which allows the
program to run.
While include<stdio.h> is the standard library function
that allows you to enter the input and receive the output.
i.e. printf() and scanf().
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are different types of pointers?
write a c program for swapping two strings using pointer
Can we replace the struct function in tree syntax with a union?
Explain the priority queues?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
Is return a keyword in c?
How can this be legal c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What are the modifiers available in c programming language?
What is the significance of an algorithm to C programming?
Explain what is output redirection?
Difference between linking and loading?
Where can I get an ansi-compatible lint?
What is the difference between single charater constant and string constant?
What is the difference between memcpy and memmove?