Computer Science, asked by cheifmarkyt, 7 months ago

What will be the output of the following program? int p=8, q=28, r; r = ++p + --q + p++ * p++ - ++q / ++p;

Answers

Answered by luisecubero77
0

Answer:

r = 136

I used Borlandc ++ 5.02

Explanation:

#include <stdio.h>

#include <conio.h>

void main()

{

clrscr();

int p=8, q=28, r;

r = ++p + --q + p++ * p++ - ++q / ++p;

printf("%d",r);

getch();

}

Attachments:
Similar questions