Question 31
Answer saved
Marked out of 1.00
What is the output of this C code?
1
#include<stdio.h>
2 #include<string.h>
3
#include<conio.h>
4
int main()
5日{
6
7
8
9
int i=3;
int 1=1/-2;
int k=i%-2;
printf("%d %d",1,k);
10
return 0;
11 }
O a. 1-1
Ob. 11
c. -11
Od. Compile time error
Clear my choice