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 |
how to get starting address of a running C program
how to generate sparse matrix in c
How can I swap two values without using a temporary?
What are the features of the c language?
What is function and its example?
If the size of int data type is two bytes, what is the range of signed int data type?
what is difference between declaring the pointer as int and char in c language?
What is boolean in c?
How to implement a packet in C
How can I read and write comma-delimited text?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
what does exit() do?