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
Do array subscripts always start with zero?
Is using exit() the same as using return?
Disadvantages of C language.
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
Where are some collections of useful code fragments and examples?
What is const keyword in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Define Array of pointers.
Differentiate between a structure and a union.
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
Explain what is meant by high-order and low-order bytes?
What is the scope of local variable in c?
What is a macro?
What are the advantages of using linked list for tree construction?
What is the difference between a function and a method in c?