Check, what will be printed in the following below given program:
#include
main()
{int a,c;
a=4;
c=a*a*a;
printf("%d %d\n",a,c,c*c);
}
Answers
Answered by
0
output is 464
first it will print the value of a
then c value is printed c=a*a*a = 4*4*4 = 64
Answered by
0
It is entirely based on C programming. It is a well-known programming used in different kinds of applications.
If we process the above program in C program, we can get the output as 464.
In fact, the program will print the original value of “a” at first. After that, the value of c is actually printed. It is given as a*a*a = 4*4*4 = 64.
Similar questions
Math,
7 months ago
Business Studies,
7 months ago
English,
7 months ago
English,
1 year ago
Social Sciences,
1 year ago
CBSE BOARD X,
1 year ago
English,
1 year ago