Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C Programming
»
Constants
Point out the error in the program. #include
const char *fun(); int main() { char *ptr = fun(); return 0; } const char *fun() { return "Hello"; }
Error: Lvalue required
Error: cannot convert 'const char *' to 'char *'.
No error and No output
None of above
Correct Answer:
No error and No output
← Previous Question
Next Question→
More Questions from
Constants
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