Answer Posted / vinay tiwari
there are three types of error in c
logical,syntax,linking error
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How can I do peek and poke in c?
What is c system32 taskhostw exe?
What is the difference between char array and char pointer?
Is c is a low level language?
What is a double c?
Difference between Shallow copy and Deep copy?
how many key words availabel in c a) 28 b) 31 c) 32
What is sizeof int in c?
how can use subset in c program and give more example
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain how do you print only part of a string?
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 structure and union in c?
What is the sizeof () operator?
What does nil mean in c?