Computer Science, asked by Fowzanbaba8915, 7 months ago

int a=12,b=8; a*= ++a/6 + b++ %3; What will be the value of y=?

Answers

Answered by luisecubero77
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