what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / reddy
ans ch=0
if we print a it wil be 10
| Is This Answer Correct ? | 2 Yes | 11 No |
Post New Answer View All Answers
what do the 'c' and 'v' in argc and argv stand for?
Describe the order of precedence with regards to operators in C.
Is c dynamically typed?
What is getch() function?
What are the types of c language?
Why can’t constant values be used to define an array’s initial size?
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
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
How many types of arrays are there in c?
Write the Program to reverse a string using pointers.
#include
How do shell structures work?
What are the two types of functions in c?
How many keywords are there in c?
There seem to be a few missing operators ..