How can you print HELLO WORLD without using "semicolon"?
Answer Posted / vinita khandavi
#include(stdio.h)
// Develped by vinita
void main()
{
if(printf("Hello world"))
{
}
}
| Is This Answer Correct ? | 32 Yes | 17 No |
Post New Answer View All Answers
What is character set?
When would you use a pointer to a function?
How can I display a percentage-done indication that updates itself in place, or show one of those twirling baton progress indicators?
What are linker error?
Why is c so powerful?
What is variable declaration and definition in c?
Explain how can you check to see whether a symbol is defined?
Can we replace the struct function in tree syntax with a union?
Differentiate between the expression “++a” and “a++”?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Tell me is null always defined as 0(zero)?
Write a program for Overriding.
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:
For what purpose null pointer used?
What is d scanf?