Home » C Programming » Constants

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"; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!