Answer Posted / siddhartha mukherjee
C is the third letter of english alphabet
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
What's the difference between constant char *p and char * constant p?
What do you mean by Recursion Function?
Give basis knowledge of web designing ...
How can I do graphics in c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?
Why is #define used?
What is the c value paradox and how is it explained?
Explain what is the purpose of "extern" keyword in a function declaration?
What does malloc () calloc () realloc () free () do?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
How do you define CONSTANT in C?
What is #include cctype?
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
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc