64/square(4)
Answer / sorab
#define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
the macro call square(4) will substituted by 4*4 so the expression becomes i = 64/4*4 . Since / and * has equal priority the expression will be evaluated as (64/4)*4 i.e. 16*4 = 64
| Is This Answer Correct ? | 9 Yes | 0 No |
Is c is a low level language?
Which built-in library function can be used to match a patter from the string?
how to use enum datatype?Please explain me?
What is the mean of function?
What compilation do?
7 Answers Geometric Software, Infosys,
what is data structure
what is the difference between malloc() and calloc() function?
how many keywords are available in 'c' language a) 32 b) 34 c) 45 d) 48
why we wont use '&' sing in aceesing the string using scanf
explain what is fifo?
What is a header file?
If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.