What is the output of this C code? int main() { int i = 5; int l = i / -4; int k = i % -4; printf("%d %d\n", l, k); return 0; }
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option B
Explanation :
None.
Be The First To Comment