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 are the disadvantages of a shell structure?
change to postfix a/(b+c*d-e)
Write a program to add the following ¼+2/4+3/4+5/3+6/3+... (Like up to any 12 no.s)
How can I get the current date or time of day in a c program?
Explain what are multidimensional arrays?
why we use pointer in c
how to find the sizof of any datatype using bit manipulations
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
What does c mean before a date?
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n
Is c call by value?