what will be the output:
main(){char ch;int a=10;printf("%d",ch);}
Answer Posted / ruth
it will print 64
| Is This Answer Correct ? | 0 Yes | 13 No |
Post New Answer View All Answers
Explain how do you search data in a data file using random access method?
Difference between Function to pointer and pointer to function
What are the storage classes in C?
What is extern keyword in c?
How will you write a code for accessing the length of an array without assigning it to another variable?
Are there constructors in c?
How will you delete a node in DLL?
What are bitwise shift operators in c programming?
Is c object oriented?
Explain what are the different file extensions involved when programming in c?
What is non linear data structure in c?
Are there namespaces in c?
Are bit fields portable?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
code for replace tabs with equivalent number of blanks