Includehelp
1.49K subscribers
2 photos
74 links
Official channel of includehelp.com - Learn technologies , A platform for computer science students and developers to learn and share technologies.
Download Telegram
what will be the o/p of the following C program.
#include <stdio.h>
int main()
{
int a=10;
if(a==10)
{
printf("Hello...");
break;
printf("Ok");
}
else
{
printf("Hii");
}
return 0;
}
👍17