Computer Science, asked by naaz1002faizabad, 10 months ago

IF A=5 Rs THEN GOTO​

Answers

Answered by mayanksharma789594
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