What is the output of this C code? int main() { int i = 23; char c = -23; if (i < c) printf("Yes\n"); else printf("No\n"); }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
None.
Be The First To Comment