void main(){ char *msg = "hi"; printf(msg);}
void main()
{
char *msg = "hi";
printf(msg);
}
hi
h
hi followed by garbage value
Error
Garbage Value
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option A
Explanation :
Explanation Not Provided
Be The First To Comment