What will be the output of the following program:
#include<stdio.h>
int main()
{
printf("%d,",4%3);
printf("%d,",4%-3);
printf("%d,",-4%3);
printf("%d",-4%-3);
return 0;
}1.1,1,1,1
2.1,1,-1,-1
3.compiler error
4.runtime error
Posted Date:-2021-06-24 01:32:48