Computer Science, asked by kevinspatel, 4 months ago

What will be the output of following code? *
#include<stdio.h>
#include<conio.h>
void main()
{
int a=100;
int b=200;
if(a==100)
{
if(b==200)
{
printf("value of a is 100 and bis 200\n");
}
}
printf("Exact value of a is: %d\n",a);
printf("Exact value of b is: %d\n",b);
getch();
?​

Answers

Answered by itsesarthak
0

Answer:

the output will be

value of a is 100 and b is 200

value of a is 100 and b is 200Exact value of a is 100

exact value of b is 200

Similar questions