what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / guest
junk character
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Differentiate between the expression “++a” and “a++”?
Explain c preprocessor?
Can we assign string to char pointer?
What is the explanation for the dangling pointer in c?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
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.
how to create duplicate link list using C???
which is conditional construct a) if statement b) switch statement c) while/for d) goto
find the sum of two matrices and WAP for it.
Why void is used in c?
What is difference between array and pointer in c?
What does sizeof int return?
How can I find out if there are characters available for reading?
what are the facialities provided by you after the selection of the student.
Why c is called a mid level programming language?