Interview Questions

What will be printed as the result of the operation below main(){char s1[]=“Cisco”;...

C Interview Questions and Answers


(Continued from previous question...)

What will be printed as the result of the operation below main(){char s1[]=“Cisco”;...

What will be printed as the result of the operation below:
main()
{
char s1[]=“Cisco”;
char s2[]= “systems”;
printf(“%s”,s1)
; }



Answer: Cisco

(Continued on next question...)

Other Interview Questions