Answer Posted / agalya
#include<stdio.h>
#include<conio.h>
void main()
{
printf("\%d");
}
| Is This Answer Correct ? | 13 Yes | 10 No |
Post New Answer View All Answers
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What are type modifiers in c?
What is a void pointer in c?
What is #line?
a program that can input number of records and can view it again the record
Explain what standard functions are available to manipulate strings?
What is meant by type specifiers?
What is the use of #define preprocessor in c?
Are bit fields portable?
Between macros and functions,which is better to use and why?
Why c is called top down?
What are different storage class specifiers in c?
What is struct node in c?
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
Is it possible to use curly brackets ({}) to enclose single line code in c program?