wap to print "hello world" without using the main function.
Answers were Sorted based on User's Feedback
Answer / raghuram
To display "hello world"
printf("\"hello world\"");
| Is This Answer Correct ? | 5 Yes | 57 No |
Answer / guest
#include<stdio.h>
#include<conio.h>
printf("hello world");
| Is This Answer Correct ? | 3 Yes | 62 No |
How do you prevent buffer overflows in C?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
How would you sort a linked list?
Why is sprintf unsafe?
What is pointer to pointer in c language?
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
What is the output of printf("%d", printf("Hello"));?
hi how to convert program from notepad to turboc editor can u please help me
List the difference between a While & Do While loops?
which is faster execution: loops or recursion?
how to find out the inorder successor of a node in a tree??
What is a struct c#?