Answer Posted / srinath
# is symbol of the Preprocessor directive means it tells the
compiler i will execute before compilation time.the
preprocessor directives like
#include<stdio.h>
# define MAX 10
Srianth
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Write a program of prime number using recursion.
What is the general form of #line preprocessor?
Is return a keyword in c?
Can an array be an Ivalue?
What is extern variable in c with example?
Which is better malloc or calloc?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Explain what is the benefit of using an enum rather than a #define constant?
What is a scope resolution operator in c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
Differentiate between a structure and a union.
What is volatile keyword in c?
What is the default value of local and global variables in c?
What is register variable in c language?
differentiate built-in functions and user – defined functions.