wap to print "hello world" without using the main function.
Answer Posted / uttam kumar das
#include<stdio.h>
#include<conio.h>
#define uttam main
uttam()
{
printf("hello world");
getch();
return 0;
}
| Is This Answer Correct ? | 8 Yes | 6 No |
Post New Answer View All Answers
Write a program which returns the first non repetitive character in the string?
How can I find the modification date of a file?
What is the purpose of realloc()?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
How do I convert a string to all upper or lower case?
Differentiate between new and malloc(), delete and free() ?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
What are data types in c language?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Explain the difference between #include "..." And #include <...> In c?
What does double pointer mean in c?
Define VARIABLE?
When is a void pointer used?
Are local variables initialized to zero by default in c?