What is the output of this C code?
#include <stdio.h> void main() { int x = 97; char y = x; printf("%cn", y); }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option A
Explanation :
Be The First To Comment