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
what are the facialities provided by you after the selection of the student.
Why is %d used in c?
What is an lvalue in c?
List out few of the applications that make use of Multilinked Structures?
What are formal parameters?
What is pass by reference in c?
What is the concatenation operator?
What is mean by data types in c?
What is wrong in this statement?
What is atoi and atof in c?
Why dont c comments nest?
What's the best way of making my program efficient?
There seem to be a few missing operators ..
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
what are bit fields? What is the use of bit fields in a structure declaration?