what is use#in c
Answers were Sorted based on User's Feedback
# 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 |
Answer / saurabh chakrabarty
# is used in c to write preprocessor statements (i.e. macros)
these statements are called preprocessor statements as these
statements are processed prior to the compilation of the
rest of the code by the compiler
| Is This Answer Correct ? | 1 Yes | 0 No |
What is p in text message?
In header files whether functions are declared or defined?
What is exit() function?
What is scanf_s in c?
What is the difference between struct and typedef struct in c?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
what is event driven software and what is procedural driven software?
What is the difference between printf and scanf in c?
What are the 5 types of inheritance in c ++?
How. To pass the entrance test
What is the use of gets and puts?
What is data structure in c programming?