what is the value of b
if a=5;
b=++a + ++a
Answer Posted / nitin jatpuriya
14
Is This Answer Correct ? | 15 Yes | 22 No |
Post New Answer View All Answers
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
Explain how do you use a pointer to a function?
what is a constant pointer in C
why programs in c are running with out #include
What are the types of unary operators?
Explain why c is faster than c++?
What is the heap?
Write a program with dynamically allocation of variable.
Explain argument and its types.
What is the difference between single charater constant and string constant?
How are 16- and 32-bit numbers stored?
How can you allocate arrays or structures bigger than 64K?
What are the different properties of variable number of arguments?
What is volatile, register definition in C
How to write a code for reverse of string without using string functions?