MCQ Practice
Single Best Answer
Topic: Pointer in C Language
Q
What will be the output of the following program?
#include"stdio.h"
char *fun(){
char *temp = "atnyla";
return temp;
}
void main()
{
puts(fun());
}
Subchapter
Pointer in C Language
Action
Choose one option below