C
Programming and Technical
Logical Reasoning
Coding Decoding
Q. What will be printed as the result of the operation below:
main()
{
int a=0;
if(a==0)
printf(“Cisco Systemsnâ€);
printf(“Cisco Systemsnâ€);
}
Read Solution (Total 4)
-
- I think it should print:
“Cisco Systemsnâ€
“Cisco Systemsnâ€
- 9 years agoHelpfull: Yes(1) No(1)
- in printf there are no " " so it will give error
if in printf there are " " then print both string under printf() function - 9 years agoHelpfull: Yes(1) No(0)
- no op an error " " ths statement missed
- 9 years agoHelpfull: Yes(1) No(0)
- The printf without doublequstion so the don't print output
- 5 years agoHelpfull: Yes(0) No(0)
C Other Question