Answer Posted / vijay kumar tiwari
#include<iostream.h>
main()
{
cout<<"hello";
}
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
How many identifiers are there in c?
When is a void pointer used?
When can you use a pointer with a function?
If fflush wont work, what can I use to flush input?
What are the benefits of c language?
What is echo in c programming?
What does the function toupper() do?
Is flag a keyword in c?
What is optimization in c?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
How many types of sorting are there in c?
What is union and structure in c?
Can you assign a different address to an array tag?
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
program to find out date after adding 31 days to a date in the month of febraury also consider the leap year