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


Please Help Members By Posting Answers For Below Questions

where are auto variables stored? What are the characteristics of an auto variable?

597


What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?

815


For what purpose null pointer used?

609


What is double pointer in c?

593


Can a function argument have default value?

676






Hai what is the different types of versions and their differences

1493


What is a macro in c preprocessor?

634


How does pointer work in c?

623


Which function in C can be used to append a string to another string?

649


What does the function toupper() do?

661


How can I remove the leading spaces from a string?

638


What is structure in c explain with example?

642


Write a program to swap two numbers without using a temporary variable?

613


Write a program to check prime number in c programming?

601


What is #include in c?

602