print a "hello" word without using printf n puts in c language
Answer Posted / sandeep kumar yadav
fprintf(stdout,"Hello");
| Is This Answer Correct ? | 11 Yes | 15 No |
Post New Answer View All Answers
explain how do you use macro?
What is structure padding in c?
How can I swap two values without using a temporary?
What are the 4 types of functions?
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
Write a program to print factorial of given number without using recursion?
Can we compile a program without main() function?
If the size of int data type is two bytes, what is the range of signed int data type?
Explain how do you view the path?
What is variable initialization and why is it important?
How can I sort more data than will fit in memory?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What are logical errors and how does it differ from syntax errors?
What is an lvalue?
What are keywords in c with examples?