C Programming :: Const
-
Point out the error in the program (in Turbo-C).
#include #define MAX 128 int main() { const int max=128; char array[max]; char string[MAX]; array[0] = string[0] = 'A'; printf("%c %c\n", array[0], string[0]); return 0; } -
Point out the error in the program.
#include #includeunion 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; } -
Point out the error in the program.
#include const char *fun(); int main() { char *ptr = fun(); return 0; } const char *fun() { return "Hello"; } -
Point out the error in the program.
#includeint main() { const int x; x=128; printf("%d\n", x); return 0; } -
Point out the error in the program.
#include int main() { const int k=7; int *const q=&k; printf("%d", *q); return 0; } -
Point out the error in the program.
#include#define MAX 128 int main() { char mybuf[] = "Fresher"; char yourbuf[] = "GATE"; char const *ptr = mybuf; *ptr = 'a'; ptr = yourbuf; return 0; } -
Point out the error in the program.
#include const char *fun(); int main() { *fun() = 'A'; return 0; } const char *fun() { return "Hello"; }

Whatsapp
Facebook