Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C Programming
»
Constants
What will be the output of the program? #include
#include
union employee { char name[15]; int age; float salary; }; const union employee e1; int main() { strcpy(e1.name, "K"); printf("%s %d %f", e1.name, e1.age, e1.salary); return 0; }
Error: RValue required
Error: cannot convert from 'const int *' to 'int *const'
Error: LValue required in strcpy
No error
Correct Answer:
No error
Explanation:
The output will be (in 16-bit platform DOS):
K 75 0.000000
← Previous Question
Next Question→
More Questions from
Constants
What will be the output of the program? #include
int main() { const int x=5; const int *ptrx; ptrx = &x; *ptrx = 10; printf("%d\n", x); return 0; }
What will be the output of the program? #include
int main() { const c = -11; const int d = 34; printf("%d, %d\n", c, d); return 0; }
Point out the error in the program. #include
#include
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; }
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 (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
const char *fun(); int main() { *fun() = 'A'; return 0; } const char *fun() { return "Hello"; }
Point out the error in the program. #include
#define MAX 128 int main() { char mybuf[] = "India"; char yourbuf[] = "CURIOUSTAB"; char const *ptr = mybuf; *ptr = 'a'; ptr = yourbuf; return 0; }
Point out the error in the program. #include
int 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[] = "India"; char yourbuf[] = "CURIOUSTAB"; char *const ptr = mybuf; *ptr = 'a'; ptr = yourbuf; return 0; }
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment
Join Discussion
Discussion & Comments