print ur name without using any semicolon in c/c++....
Answer Posted / deepjoy das
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("Deep"))
{
}
}
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
which is conditional construct a) if statement b) switch statement c) while/for d) goto
Once I have used freopen, how can I get the original stdout (or stdin) back?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is structure padding in c?
What is #define in c?
Hi can anyone tell what is a start up code?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What are the uses of a pointer?
Can you please explain the difference between malloc() and calloc() 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 are the features of the c language?
what is ur strangth & weekness
What is assignment operator?
How can a program be made to print the name of a source file where an error occurs?
What is the difference between malloc calloc and realloc in c?