21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answer Posted / rocker1198
Its 64/(4*4)
ans is 4
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
How to write a program for machine which is connected with server for that server automatically wants to catch the time for user of that machine?
What are the application of c?
What are the keywords in c?
Why c is called free form language?
What is variable and explain rules to declare variable in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What are valid signatures for the Main function?
What does & mean in scanf?
What is the scope of local variable in c?
What is the function of multilevel pointer in c?
How do you print an address?
Is c pass by value or reference?
explain what are actual arguments?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?