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
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