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
Includehelp pinned ยซDigital Marketing Multiple-Choice Questions (MCQs) https://www.includehelp.com/mcq/digital-marketing-mcqs.aspxยป
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