Point out the error in the program.
#include<stdio.h> const char *fun(); int main() { *fun() = 'A'; return 0; } const char *fun() { return "Hello"; }
Point out the error in the program.
#include<stdio.h> int main() { const int k=7; int *const q=&k; printf("%d", *q); return 0; }
Point out the error in the program.
#include<stdio.h> int main() { const int x; x=128; printf("%d\n", x); return 0; }
Point out the error in the program.
#include<stdio.h> const char *fun(); int main() { char *ptr = fun(); return 0; } const char *fun() { return "Hello"; }
Point out the error in the program.
#include<stdio.h> #include<stdlib.h> union employee { char name[15]; int age; float salary; }; const union employee e1; int main() { strcpy(e1.name, "K"); printf("%s", e1.name); e1.age=85; printf("%d", e1.age); printf("%f", e1.salary); return 0; }