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
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What are the rules for identifiers in c?
Linked lists -- can you tell me how to check whether a linked list is circular?
Is it better to bitshift a value than to multiply by 2?
Where are the auto variables stored?
What are two dimensional arrays alternatively called as?
What is assert and when would I use it?
What is array in c with example?
write an algorithm to display a square matrix.
What do header files do?
What does 4d mean in c?
Explain high-order and low-order bytes.
What are # preprocessor operator in c?
Why we use break in c?
When is a void pointer used?