Program to display given 3 integers in ascending order
Answer Posted / guest
1,2,3
| Is This Answer Correct ? | 16 Yes | 9 No |
Post New Answer View All Answers
What is the difference between void main and main in c?
What is union in c?
What are qualifiers and modifiers c?
Why enum is used in c?
What is boolean in c?
What is the function of multilevel pointer in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is the scope of an external variable in c?
Explain what is a static function?
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
What is call by reference in functions?
Explain what is the difference between text files and binary files?
How would you rename a function in C?
What is the scope of global variable in c?
Are bit fields portable?