#include <stdio.h> int main() { printf("Ajit "); goto Label1; printf("Abhay "); Label1:goto Label2; printf("Sumi "); Label2:printf("Imroj "); }
Ajit Imroj
Previous Question Next Question
Your comments will be displayed only after manual approval.