IF A=5 Rs THEN GOTO
Answers
Answered by
2
Explanation:
#include<studio.h>
#include<conio.h>
void main()
{
int a;
clrscr();
printf ("enter a number");
scanf ("%d",&a);
if(a==5)
{
printf("your number is 5");
}
else
{
printf ("your number is not 5");
}
getch();
}
Similar questions
English,
5 months ago
World Languages,
5 months ago
Math,
10 months ago
Science,
10 months ago
Math,
1 year ago