Comments and Discussions You don't need to login to post your comment Comments: 30 Views: 60k Likes: 120k votes Anonymous 🌐 India 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; } --------------------------------------- Was this answer helpful? Submit