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

Answer Posted / sivasankar

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

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When should the register modifier be used? Does it really help?

613


Why is main function so important?

617


What are formal parameters?

660


How pointer is different from array?

579


How do we open a binary file in Read/Write mode in C?

680






What is unary operator?

660


`write a program to display the recomended action depends on a color of trafic light using nested if statments

1633


What is return in c programming?

515


Should I learn data structures in c or python?

583


How do you determine the length of a string value that was stored in a variable?

652


Explain how can a program be made to print the line number where an error occurs?

694


All technical questions

1511


Where does the name "C" come from, anyway?

645


Explain pointers in c programming?

635


Explain the use of #pragma exit?

699