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.Compiler error
2.Runtime error
3.1,-1,-1,1
4.1,1,1,1
Posted Date:-2021-06-24 01:32:48