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

Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?

857


Is boolean a datatype in c?

742


Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.

876


Explain how does flowchart help in writing a program?

840


Tell me about low level programming languages.

843


Why functions are used in c?

811


List out few of the applications that make use of Multilinked Structures?

1692


In C, What is the #line used for?

1461


how we can make 3d venturing graphics on outer interface

4322


How do you do dynamic memory allocation in C applications?

818


How many levels of pointers have?

781


What does char * * argv mean in c?

795


What do you mean by recursion in c?

840


What oops means?

737


Why is c called a structured programming language?

975