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 are the types of type specifiers?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Is exit(status) truly equivalent to returning the same status from main?
Do you know what are the properties of union in c?
What are the different file extensions involved when programming in C?
Compare array data type to pointer data type
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
Which type of language is c?
What is queue in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What are pointers in C? Give an example where to illustrate their significance.
What are the header files used in c language?
How can I trap or ignore keyboard interrupts like control-c?
What is c definition?
How many main () function we can have in a project?