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 |
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Explain the difference between strcpy() and memcpy() function?
what is difference b/w extern & volatile variable??
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
How can you allocate arrays or structures bigger than 64K?
Explain how do you determine a file’s attributes?
m=++i&&++j(||)k++ printf("%d"i,j,k,m)
What does the error message "DGROUP exceeds 64K" mean?
what is purpose of fflush(stdin) function
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
What is class and object in c?
What is a keyword?