What will be output of the following “C” code?

Q&ACategory: MathematicsWhat will be output of the following “C” code?
Biswadip PalBiswadip Pal Staff asked 6 years ago
#include<stdio.h>
main()
{
int a,i=4;
a=- -i+- -i+- -5;
printf("%d %d",a,i);
}
1 Answers
TAMOGHNA MUKHOPADHYAYTAMOGHNA MUKHOPADHYAY answered 6 years ago

/*
OUTPUT
94
*/

Your Answer

16 + 13 =