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 it possible to run using programming C for Java Application?
What is wrong with this initialization?
what is uses of .net
Name the language in which the compiler of "c" in written?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
Write a program in c using only loops to print * * * * * *******
Explain the difference between malloc() and calloc() function?
What is c method?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
How can I remove the leading spaces from a string?
Why does this code crash?