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 is 'bus error'?
Can you please explain the difference between malloc() and calloc() function?
How are variables declared in c?
Can a pointer be null?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
Write the syntax and purpose of a switch statement in C.
how to count no of words,characters,lines in a paragraph.
What is difference between structure and union with example?
Can a local variable be volatile in c?
What is use of pointer?
What are the applications of c language?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
How do I swap bytes?
Explain what is page thrashing?