Programming Concepts Question:
How to print "hello world" in c without using semicolon?
Answer:
main()
{
clrscr();
if(printf("Hello Tarun Goyal"))
{}
getch();
}
{
clrscr();
if(printf("Hello Tarun Goyal"))
{}
getch();
}
Previous Question | Next Question |
Explain what is the difference between Process and thread with real time examples? | How to increase transfer rate of an hard disk? |