What are the modifiers available in c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
What does the file stdio.h contain?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
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
Should I learn c before c++?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
What is getche() function?
Explain how do you print an address?
out put of printf(“%d”,printf(ram));
Why do we use static in c?
Every time i run a c-code in editor, getting some runtime error and editor is disposing, even after reinstalling the software what may be the problem?
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?