wap to print "hello world" without using the main function.
Answer Posted / vignesh1988i
the basic format or the first executable code line is the
main function in C.... so if we try to print the anything
without main we are trying to modify the basic concepts of C
and this will not look nice....
thank u
| Is This Answer Correct ? | 20 Yes | 24 No |
Post New Answer View All Answers
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Explain enumerated types in c language?
Explain built-in function?
Can main () be called recursively?
What does main () mean in c?
Should I learn data structures in c or python?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Can a program have two main functions?
What is a macro?
Describe static function with its usage?
Is it possible to execute code even after the program exits the main() function?
Why does everyone say not to use gets?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Explain can you assign a different address to an array tag?