Computer Science, asked by Heerag4898, 1 year ago

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 Aishwarya98
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 aqibkincsem
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