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
What are types of functions?
What is actual argument?
FILE PROGRAMMING
What are the two types of structure?
State the difference between x3 and x[3].
What is the difference between declaring a variable and defining a variable?
What is %s and %d in c?
How many types of operators are there in c?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What is c++ used for today?
explain how do you use macro?
Is it possible to initialize a variable at the time it was declared?
What is line in c preprocessor?
What are header files? What are their uses?