Interview Questions

What will be printed as the result of the operation below:main(){ int a=0;

C Interview Questions and Answers


(Continued from previous question...)

What will be printed as the result of the operation below:main(){ int a=0;

What will be printed as the result of the operation below:
main()
{
int a=0;
if(a==0)
printf(“Cisco Systems\n”);
printf(“Cisco Systems\n”);

}



Answer: Two lines with “Cisco Systems” will be printed.

(Continued on next question...)

Other Interview Questions