kaldin

  • Login

C Programming


1) What will be the output of the program ?

#include<stdio.h>

int main()
{
    char *p;
    p="hello";
    printf("%s\n", *&*&p);
    return 0;
}
  • 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
Which header file should you include, if you are going to develop a function, which can accept variable number of arguments
Which of the following statements are correct about the function long fun(int num) int i; long f=1; for(i=1; i=num; i++) f = f i; return f;
How many times the program will print FutureC #includestdio.hint main() printf(FutureC); main(); return 0;
How will you free the allocated memory