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 self-referential structure in c programming?
What are the features of the c language?
What is structure padding ?
What is difference between structure and union in c programming?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
How many types of operators are there in c?
Explain what does it mean when a pointer is used in an if statement?
What is the OOPs concept?
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
What is the use of the function in c?
Write a program to print "hello world" without using a semicolon?
How does selection sort work in c?