Answer Posted / a.nagendra reddy
Dennis Ritche
| Is This Answer Correct ? | 137 Yes | 6 No |
Post New Answer View All Answers
How pointer is different from array?
What is the purpose of ftell?
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
What is a program flowchart and how does it help in writing a program?
What is the use of a ‘ ’ character?
Explain the difference between call by value and call by reference in c language?
What is the difference between text files and binary files?
What is #include stdio h and #include conio h?
What are the data types present in c?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
When should structures be passed by values or by references?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
What is a rvalue?
Write the Program to reverse a string using pointers.
What is binary tree in c?