write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / upendra
main()
{
if(printf("welcome"))
}
}
]
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
Was 2000 a leap year?
Difference between Function to pointer and pointer to function
Is printf a keyword?
Dont ansi function prototypes render lint obsolete?
what is the significance of static storage class specifier?
Which function in C can be used to append a string to another string?
How was c created?
What is a scope resolution operator in c?
What are the complete rules for header file searching?
What is the purpose of void pointer?
Can a file other than a .h file be included with #include?
Do you know the purpose of 'register' keyword?
The difference between printf and fprintf is ?
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:
What is a shell structure examples?