write a “Hello World” program in “c” without using a semicolon?
Answer Posted / saranya
int main()
{
if(printf("Hello world"))
{
}
}
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What is the size of a union variable?
List some of the dynamic data structures in C?
Why is c called a structured programming language?
What is external variable in c?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
How are structure passing and returning implemented?
How can I open files mentioned on the command line, and parse option flags?
What is C language ?
What is an endless loop?
What is a substring in c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Which function in C can be used to append a string to another string?
Is r written in c?
What is the difference between text files and binary files?
Is it better to use malloc() or calloc()?