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.
Compilation Error
will print Hello World
will print garbage value

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

comes before the first executable statement
need not start on a new line
need not start on the first column
has # as the first character

ANSWER DOWNLOAD EXAMIANS APP