wap to print "hello world" without using the main function.
Answer Posted / guest
#include<stdio.h>
#include<conio.h>
printf("hello world");
| Is This Answer Correct ? | 3 Yes | 62 No |
Post New Answer View All Answers
#include
What is difference between Structure and Unions?
What is switch in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
When do we get logical errors?
Can you please explain the difference between malloc() and calloc() function?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is pass by value in c?
What is a file descriptor in c?
What is the difference between formatted&unformatted i/o functions?
What is wild pointer in c with example?
What does the file stdio.h contain?
What is an array in c?
What is linear search?
How do I use void main?