Home
Explore
Places
win7
win8
Coding
Friday, 8 February 2013
10
What is the output of the following program?
#include<stdio.h>
#define x 4+1
int main()
{
int i;
i = x*x*x;
printf("%d",i);
return 0;
}
(a) 125
(b) 13
(c) 17
(d) None of above
10
2013-02-08T06:31:00-08:00
cvs
prgm|