kaldin

  • Login

C Programming


1) What is the notation for following functions?

1.  int f(int a, float b)
    {
        /* Some code */
    }
  • A)

  • B)

  • C)

  • D)

Next
Show Answer:
Show Answer


More Question
What is the output of the program typedef struct data; int x; sdata b;sdata;
Which of the following statement is correct about the program #includestdio.hint main() FILE fp; char ch; int i=1; fp = fopen(myfile.c, r); while((ch=getc(fp))!=EOF) if(ch == '\n') i++; fclose(fp); return 0;
Point out the error in the following program. #includestdio.hint main() struct emp char name[20]; float sal; ; struct emp e[10]; int i; for(i=0; i=9; i++) scanf(s f, e[i].name, &e[i].sal); return 0;
A preprocessor directive is a message from programmer to the preprocessor.
The keyword used to transfer control from a function back to the calling function is