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
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Is boolean a datatype in c?
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
Explain how does flowchart help in writing a program?
Tell me about low level programming languages.
Why functions are used in c?
List out few of the applications that make use of Multilinked Structures?
In C, What is the #line used for?
how we can make 3d venturing graphics on outer interface
How do you do dynamic memory allocation in C applications?
How many levels of pointers have?
What does char * * argv mean in c?
What do you mean by recursion in c?
What oops means?
Why is c called a structured programming language?