int a=12,b=8; a*= ++a/6 + b++ %3; What will be the value of y=?
Answers
Answered by
0
Answer:
a = 52
the value of y is error , variable y is not defined
I used Borlandc ++ 5.02
Explanation:
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
int a=12,b=8;
a*= ++a/6 + b++ %3;
printf("%d",a);
getch();
}
Attachments:
Similar questions