I have one doubt.
What does below statement mean?
#define sizeof(operator)
where operator can be int or float etc.
Does this statement meaningful and where it can be used?
The following define overrides all the occurrences of sizeof and replaces by blank, there is no definition of sizeof on the right hand side of expression
#define sizeof(operator)
example
printf("val = %d", sizeof(int)); is made to look like
printf("val = %d", ); // replaced by blank, int not processed
// causes compilation error
| Is This Answer Correct ? | 0 Yes | 0 No |
Is there any restriction in how many arguments printf or scanf function can take? in which file in my c++ compiler i can see the code for implementation of these two functions??
how to find out the reverse number of a digit if it is input through the keyboard?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
How do you access command-line arguments?
is assignment operator is arithmatic or not
Describe dynamic data structure in c programming language?
write a program to generate 1st n fibonacci prime number
What is function what are the types of function?
what is the difference between class and unio?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is pass by reference in functions?
What does struct node * mean?