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

Answer Posted / uttam kumar das

#include<stdio.h>
#include<conio.h>
#define uttam main
uttam()
{
printf("hello world");
getch();
return 0;
}

Is This Answer Correct ?    8 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of arrays in c?

617


Explain what is wrong in this statement?

626


Explain what are the different data types in c?

745


What is the use of linkage in c language?

609


why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

646






What will be the outcome of the following conditional statement if the value of variable s is 10?

754


What is the c value paradox and how is it explained?

567


Can you write a programmer for FACTORIAL using recursion?

605


how many key words availabel in c a) 28 b) 31 c) 32

627


What is difference between static and global variable in c?

529


What is a const pointer in c?

659


If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..

1581


Which of these functions is safer to use : fgets(), gets()? Why?

627


Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

5458


On most computers additional memory that is accessed through an adapter of feature card along with a device driver program. a) user memory b) conventional memory c) expandedmemory d) area

651