C
Programming and Technical
Logical Reasoning
Mathematical Reasoning
#include
int main()
{
printf("%d %dn", 32<0);
printf("%d %dn", 32>>-1, 32>>-0);
return 0;
}
Read Solution (Total 5)
-
- first printf prints 0 and second printf prints 64 32
- 8 years agoHelpfull: Yes(2) No(2)
- printf("%d%d",32
- 8 years agoHelpfull: Yes(1) No(3)
- 0 -1080701188n64 32n
- 7 years agoHelpfull: Yes(1) No(0)
- Output:
32>-1 32>>-0 - 7 years agoHelpfull: Yes(0) No(0)
- 0 30n
64 32n - 7 years agoHelpfull: Yes(0) No(0)
C Other Question