21. #define square(x) x*x
main()
{
int i;
i = 64/square(4);
printf("%d",i);
}
Answer Posted / mathuri
4
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
What are called c variables?
What is pointer and structure in c?
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Is a house a mass structure?
Explain the use of keyword 'register' with respect to variables.
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
What are the features of the c language?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
How are pointers declared in c?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
How can a string be converted to a number?
What is the use of function overloading in C?
In which language linux is written?