Home » C Programming » Constants

Point out the error in the program. #include<stdio.h> const char *fun(); int main() { *fun() = 'A'; return 0; } const char *fun() { return "Hello"; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!