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
What does %c mean in c?
What is the difference between call by value and call by reference in c?
Define VARIABLE?
Explain heap and queue.
Write a program to check whether a number is prime or not using c?
What is the difference between printf and scanf in c?
When can you use a pointer with a function?
What is the difference between volatile and const volatile?
What is p in text message?
Can we change the value of #define in c?
Explain goto?
What is the difference between printf and scanf )?
What is difference between arrays and pointers?
What is the c language function prototype?
What is the scope of an external variable in c?