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

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

ANSWER DOWNLOAD EXAMIANS APP