Answer Posted / rama krishna sidhartha
# symbol denotes preprocessor directive in C or C++. It
means that it says the compiler that it containd some
predefined information. Like it mentions any library
included. eg # include stdio.h
| Is This Answer Correct ? | 26 Yes | 2 No |
Post New Answer View All Answers
What is the best organizational structure?
Which is more efficient, a switch statement or an if else chain?
Is c call by value?
What is #define used for in c?
Why pointers are used?
What is #line used for?
If null and 0 are equivalent as null pointer constants, which should I use?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Tell us the use of fflush() function in c language?
What is main () in c?
What are logical errors and how does it differ from syntax errors?
Is javascript based on c?
How can I change their mode to binary?
ATM machine and railway reservation class/object diagram