Computer Science, asked by ishikapal0283, 9 months ago

Question 4.
Write the output
following Program.
for
the
#include<stdio.h>
#include<conio.h>
void main()
{
int a=40,b=22, c=10, d =20, m;
clrscr();
m = (a>b) || (c<d);
m += 6;
printf("The value of m is %d",
m);
getch();
}​

Answers

Answered by nithisha2005
2

Answer:

#include<stdio.h>

#include<conio.h>

void main()

{

int a=40,b=22, c=10, d =20, m;

clrscr();

m = (a>b) || (c<d);

m += 6;

printf("The value of m is %d",

m);

getch();

}

Similar questions