What will be the output of the following program? int a=17, b=13, c; c = --a + ++b * b++ - a-- + --a / --b;
Answers
Answered by
0
Answer:
c = 170
I used Borland c++ 5.02
Explanation:
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
int a=17, b=13, c;
c = --a + ++b * b++ - a-- + --a / --b;
printf("%d",c);
getch();
}
Attachments:
Similar questions
Science,
4 months ago
English,
4 months ago
Math,
8 months ago
Environmental Sciences,
11 months ago
Biology,
11 months ago