wap to print "hello world" without using the main function.
Answer Posted / manne ranjith
Using Macros we can solve this.
#include<stdio.h>
#include<conio.h>
#define manne main
void manne()
{
clrscr();
printf("HELLO WORLD\n");
getch();
}
| Is This Answer Correct ? | 27 Yes | 18 No |
Post New Answer View All Answers
Why static variable is used in c?
What is 'bus error'?
What is a union?
Can you please explain the difference between syntax vs logical error?
What are valid operations on pointers?
What is use of integral promotions in c?
What is a volatile keyword in c?
How do I use void main?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Explain what is the purpose of "extern" keyword in a function declaration?
i got 75% in all semester am i eligible for your company
Write a program to swap two numbers without using a temporary variable?
What is struct node in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is scope rule of function in c?