wap to print "hello world" without using the main function.

Answers were Sorted based on User's Feedback



wap to print "hello world" without using the main function...

Answer / raghuram

To display "hello world"

printf("\"hello world\"");

Is This Answer Correct ?    5 Yes 57 No

wap to print "hello world" without using the main function...

Answer / guest

#include<stdio.h>
#include<conio.h>
printf("hello world");

Is This Answer Correct ?    3 Yes 62 No

Post New Answer

More C Interview Questions

What is switch in c?

0 Answers  


write a programme to convert temperature from farenheit to celcius?

4 Answers   IBM,


What is time complexity c?

0 Answers  


What is formal argument?

0 Answers  


Does free set pointer to null?

0 Answers  






Difference Between embedded software and soft ware?

1 Answers   Bosch,


do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?

1 Answers   Oracle,


2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. &#61550; Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. &#61550; When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. &#61550; Sequence of take-off is the sequence of addition to the waitlist

0 Answers  


What is calloc() function?

0 Answers  


What is the real time usage volatile?

2 Answers   Polycom,


Write a program to generate random numbers in c?

0 Answers  


What is difference between stdio h and conio h?

0 Answers  


Categories