Question:What will be output if you will compile and execute the following c code?


#include<stdio.h>
int main(){
  goto abc;
  printf("main");
  return 0;
}

void dispaly(){
  abc:
    printf("display");

A main 

B display 

C maindisplay 

D displaymain 

E Compiler error 

+ Answer
+ Report
Total Preview: 1144

Copyright © 2024. Powered by Intellect Software Ltd