21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answers were Sorted based on User's Feedback
Answer / ashok kumar
i=64/4*4;
i=16*4;
i=64
The final result is : 64
| Is This Answer Correct ? | 18 Yes | 2 No |
What is a substring in c?
how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What is the relation between # and include<stdio.h>
What is malloc return c?
Given an array A[n+m] of n+m numbers, where A[1] ... A[n] is sorted and A[n+1] ... A[n+m] is sorted. Design a linear time algorithm to obtain A[1...n+m] sorted using only O(1) extra space. Time Complexity of your algorithm should be O(n) and Space Complexity O(1).
Once I have used freopen, how can I get the original stdout (or stdin) back?
program for comparing 2 strings without strcmp()
write a program to add two numbers of any size.....(remember any size)
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is zero based addressing?
Please list all the unary and binary operators in C.