wap to print "hello world" without using the main function.
Answer Posted / siva
#include<stdio.h>
#include<conio.h>
#define siva main
siva()
{
clrscr();
printf("hello world");
getch();
return 0;
}
| Is This Answer Correct ? | 3 Yes | 5 No |
Post New Answer View All Answers
What is the use of function overloading in C?
Can include files be nested?
provide an example of the Group by clause, when would you use this clause
hi send me sample aptitude papers of cts?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
Is c procedural or functional?
What is the difference between int main and void main?
Write a program to print numbers from 1 to 100 without using loop in c?
Tell us two differences between new () and malloc ()?
Describe newline escape sequence with a sample program?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
write a c program to find the sum of five entered numbers using an array named number
What is meant by type specifiers?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }