what will be printed by this printf?
printf("%c",printf("hi")["sharkselva"]));
}
Answer Posted / ramesh choudhury
hia
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
Can I initialize unions?
What will be the outcome of the following conditional statement if the value of variable s is 10?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
Is it cc or c in a letter?
What are the 5 types of organizational structures?
What is line in c preprocessor?
What are the types of i/o functions?
Should I use symbolic names like true and false for boolean constants, or plain 1 and 0?
What is the purpose of 'register' keyword?
Explain what does a function declared as pascal do differently?
How will you write a code for accessing the length of an array without assigning it to another variable?
What are the disadvantages of c language?
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
How can I send mail from within a c program?
Explain the properties of union. What is the size of a union variable