Programming Blog
#include <stdio.h> #include <conio.h> int main() { int n = 0; loop: ; printf("\n%d", n); n++; if (n<10) { goto loop; } getch(); return 0; }
#include main(){ int b = 10; LOOP:do { if( b == 15) { b = b + 1; goto LOOP; } printf("value of a: %d\n", b); b++; }while( b < 20 ); return 0;}
#include "stdio.h"int main() { int t = 0; loop: printf("\t%d", t); t++;while(t<100) { goto loop; } getch(); return 0;}
#include
উত্তরমুছুনmain()
{
int b = 10;
LOOP:do
{
if( b == 15)
{
b = b + 1;
goto LOOP;
}
printf("value of a: %d\n", b);
b++;
}while( b < 20 );
return 0;
}
#include "stdio.h"
উত্তরমুছুনint main() {
int t = 0;
loop:
printf("\t%d", t);
t++;
while(t<100) {
goto loop;
}
getch();
return 0;
}