what is the difference between entry control and exit
control statement?
Answer Posted / manirathnam
super .....i like this type of websites
Is This Answer Correct ? | 6 Yes | 10 No |
Post New Answer View All Answers
What is the advantage of a random access file?
Explain how can you tell whether two strings are the same?
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
Explain is it better to bitshift a value than to multiply by 2?
Do you know the purpose of 'register' keyword?
How to create struct variables?
explain what is fifo?
What is difference between arrays and pointers?
Explain a pre-processor and its advantages.
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
Write a program to print numbers from 1 to 100 without using loop in c?
Why C language is a procedural language?
How can I dynamically allocate arrays?
What oops means?
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