Answer Posted / bhavitha
a/bc+de-*
Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
What is a program?
What are the various types of control structures in programming?
Describe wild pointers in c?
Why do we use c for the speed of light?
How many types of operators are there in c?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
in iso what are the common technological language?
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 character set?
Explain what are its uses in c programming?
What is const and volatile in c?
Can include files be nested?
How can I get back to the interactive keyboard if stdin is redirected?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b