21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answer Posted / ashok kumar
i=64/4*4;
i=16*4;
i=64
The final result is : 64
| Is This Answer Correct ? | 18 Yes | 2 No |
Post New Answer View All Answers
Is there a built-in function in C that can be used for sorting data?
what is the height of tree if leaf node is at level 3. please explain
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Explain the difference between malloc() and calloc() in c?
What is .obj file in c?
What are local static variables? How can you use them?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is meant by keywords in c?
How the c program is executed?
What is methods in c?
What is a nested loop?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Explain about the constants which help in debugging?
please help me..... please codes and flowchart plz turbo c lang po yan.....please asap response... 3. Make an astrology program. The user types in his or her birthday (month, day, and year as integer), and the program responds with the user’s zodiac sign, horoscope, and other information related to it. If the user’s birth year falls into a leap year, your program should display an appropriate message for it. NOTES: Conditional Statements: it should be with graphics