C
Programming and Technical
Logical Reasoning
#include
int main()
{
printf("%d %dn", 32<0);
printf("%d %dn", 32>>-1, 32>>-0);
return 0;
}
Read Solution (Total 1)
-
- output:
0 8n 64 32 n
here %dn is a format specifier specifies decimal number followed by character 'n'. - 8 years agoHelpfull: Yes(4) No(0)
C Other Question