write a “Hello World” program in “c” without using a semicolon?

Answer Posted / bitan

int main(){
if(printf("Hello World")){}
}

Is This Answer Correct ?    35 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is nested structure?

580


What is memory leak in c?

639


Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250

1513


What are the 4 types of unions?

615


what is the basis for selection of arrays or pointers as data structure in a program

3790






Why C language is a procedural language?

625


Where is volatile variable stored?

655


Write a program to reverse a string.

644


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

640


Why c is called procedure oriented language?

582


Write a program for finding factorial of a number.

637


Differentiate between the expression “++a” and “a++”?

709


Is c weakly typed?

581


What are bitwise shift operators in c programming?

650


Linked list is a Linear or non linear explain if linear how it working as a non linear data structures

1766