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

In C language what is a 'dangling pointer'?

632


pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)

2197


What do you mean by recursion in c?

621


What are compound statements?

622


What is a static variable in c?

663






main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

910


What do you mean by a local block?

627


What is #define?

571


Why we use stdio h in c?

575


write a c program to find the sum of five entered numbers using an array named number

1617


What is the best way to comment out a section of code that contains comments?

776


What is array of structure in c?

594


Is c compiled or interpreted?

659


What is the equivalent code of the following statement in WHILE LOOP format?

763


How can you avoid including a header more than once?

563