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
Define C in your own Language.
Why c is called top down?
What is the maximum no. of arguments that can be given in a command line in C.?
What is substring in c?
Is c compiled or interpreted?
What is f'n in math?
i have a written test for microland please give me test pattern
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is advantage of pointer in c?
What are header files in c programming?
How can I avoid the abort, retry, fail messages?
What is getch c?
Write a program to maintain student’s record. Record should
not be available to any unauthorized user. There are three
(3) categories of users. Each user has its own type. It
depends upon user’s type that which kind of operations user
can perform. Their types and options are mentioned below:
1. Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record)
2. Super Admin
(Search Record [by Reg. No or Name], View All Records,
Insert New Record, Modify Existing Record, Delete Single Record)
3. Guest
(Search Record [by Reg. No or Name], View All Records)
When first time program runs, it asks to create accounts.
Each user type has only 1 account (which means that there
can be maximum 3 accounts). In account creation, following
options are required:
Login Name: <6-10 alphabets long, should be unique>
Password: <6-10 alphabets long, should not display
characters when user type>
Confirm Password:
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?