What is the output of the following code?
main()
{
float a 0.7;
if(a<0.7)
printf("C");
else
printf("C++");
}
Answers
Answered by
2
main()
{float a 0.7; if(a<0.7)printf("C");elseprintf("C++");}
Similar questions