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
The keyword used to transfer control from a function back to the calling function is
What will be the output of the program #includestdio.hint main() char str[] = Nagpur; str[0]='K'; printf(s, , str); str = Kanpur; printf(s, str+1); return 0;
What is the output of the program typedef struct data; int x; sdata b;sdata;
In the expression a=b=5 the order of Assignment is NOT decided by Associativity of operators.
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;