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 |
What is structure in c explain with example?
What is return in c programming?
how to find your architecture is LittleEndian or BigEndian?
Why do we use null pointer?
In which mode we open the file for read,write and append also in c ? a)W b)w+ c)r+ d)a
program to find middle element of linklist?
program to print upper & lower triangle of a matrix
How was c created?
what does ‘segmentation violation’ mean?
Which driver is a pure java driver
write a program to check whether a number is Peterson or not.
please explain every phase in the "SDLC" in the dotnet.