printf("%d",(printf("Hello")); What it returns?
Answer Posted / praneeth
It doesn't because in printf access specifier is Integer
but to display Hello we should use %s.
Is This Answer Correct ? | 1 Yes | 22 No |
Post New Answer View All Answers
Explain how can I convert a string to a number?
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
Differentiate between new and malloc(), delete and free() ?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include
What are the string functions? List some string functions available in c.
What is bubble sort technique in c?
Can we assign integer value to char in c?
What is the hardest programming language?
What is the basic structure of c?
Write a client and server program in C language using UDP, where client program interact with the Server as given below: i) The client begins by sending a request to send a string of 8 characters or series of 7 numbers, the server sends back a characters or numbers as per the request of the client. ii) In case of series of 7 numbers: The client sends a multiplication of numbers, to the server. iii) In case of a string of 8 characters: The client sends a reverse order of string to the server.. iv) Server will send an acknowledgment to the client after receiving the correct answer
What is d'n in c?
Explain what is the general form of a c program?
What is the use of sizeof?
Explain the difference between strcpy() and memcpy() function?