C Programming
What is the result of compiling and running this code?main(){ char string[] = "Hello World"; display(string);}void display(char *string){ printf("%s", string);}

Compilation Error
will print garbage value
will print Hello World
None of these.

ANSWER DOWNLOAD EXAMIANS APP