Answer Posted / parasher
char *p;
p = (char *)malloc(sizeof(char));
| Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
What is floating point constants?
How can I get back to the interactive keyboard if stdin is redirected?
How to Throw some light on the splay trees?
How will you delete a node in DLL?
What are the restrictions of a modulus operator?
What is mean by data types in 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 a pointer variable in c language?
What is NULL pointer?
How can I find the modification date and time of a file?
What is meant by recursion?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What are the functions to open and close the file in c language?
What is a program flowchart?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.