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
What is static memory allocation? Explain
How can you convert integers to binary or hexadecimal?
Can you write the function prototype, definition and mention the other requirements.
Why does everyone say not to use gets?
What are global variables and how do you declare them?
What is the process of writing the null pointer?
Can you please explain the scope of static variables?
What is static function in c?
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is an auto variable in c?
How can I make it pause before closing the program output window?
How can I remove the leading spaces from a string?
why do some people write if(0 == x) instead of if(x == 0)?
what are bit fields? What is the use of bit fields in a structure declaration?