why do we use # in c-language?
Answer / raj
This is for including Header files in your 'C' program.
Header files means to include built-in files of your C
library.The #include directive tells the preprocessor to
treat the contents of a specified file as if those contents
had appeared in the source program at the point where the
directive appears. You can organize constant and macro
definitions into include files and then use #include
directives to add these definitions to any source file.
| Is This Answer Correct ? | 7 Yes | 0 No |
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
When can a far pointer be used?
What is the difference between ‘g’ and “g” in C?
n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }
What is wild pointer in c with example?
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE
Write a program in c to input a 5 digit number and print it in words.
What is null pointer in c?
Why string is used in c?
why effort estimation is important?
What is ## preprocessor operator in c?
What are the types of i/o functions?