#include<stdio.h>
#include<conio.h>
void main()
{
int a=5;
clrscr();
if(a==5)
{
printf(" the value of a is 5");
}
getch();
}
OUTPUT:
#include<conio.h>
void main()
{
int a=5;
clrscr();
if(a==5)
{
printf(" the value of a is 5");
}
getch();
}
OUTPUT:
the value of a is 5
No comments:
Post a Comment