#define min((a),(b)) ((a)<(b))?(a):(b)
main()
{
int i=0,a[20],*ptr;
ptr=a;
while(min(ptr++,&a[9])<&a[8]) i=i+1;
printf("i=%d\n",i);}

Answer Posted / guest

5

Is This Answer Correct ?    10 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above

623


What is data structure in c programming?

562


what is ur strangth & weekness

1809


Explain what math functions are available for integers? For floating point?

602


Explain the properties of union. What is the size of a union variable

710






What is difference between union and structure in c?

567


What is d scanf?

580


Explain high-order bytes.

669


What are pointers? What are stacks and queues?

571


How do we make a global variable accessible across files? Explain the extern keyword?

1412


Write a program to print factorial of given number using recursion?

595


Which built-in library function can be used to match a patter from the string?

732


how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.

1207


what is the structure pointer?

1637


What is declaration and definition in c?

517