how can u print a message without using any library function
in c

Answer Posted / sreekanth

void main()
{
clrscr();
printf("Hello World");
getch();
}

Is This Answer Correct ?    5 Yes 24 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a program in c language to print your bio-data on the screen by using functions.

6252


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1764


What are volatile variables in c?

522


Tell us bitwise shift operators?

600


GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)

685






How pointer is different from array?

584


Are the variables argc and argv are local to main?

790


Explain what is the difference between a free-standing and a hosted environment?

636


What is identifier in c?

547


Who developed c language?

643


Explain how do you sort filenames in a directory?

609


Why #include is used in c language?

602


can any one tel me wt is the question pattern for NIC exam

1559


How can you return multiple values from a function?

635


Explain setjmp()?

660