what is disadvantage of pointer in C
Answer Posted / adesh
as per Security point of view pointer is not safe. A lot of
threads are exist like buffer overflow problems.
| Is This Answer Correct ? | 7 Yes | 8 No |
Post New Answer View All Answers
4-Take two sets of 5 numbers from user in two arrays. Sort array 1 in ascending and array 2 in descending order. Perform sorting by passing array to a function mySort(array, sortingOrder). Then multiply both the arrays returned from function, using metric multiplication technique in main. Print result in metric format.
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.
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Describe the steps to insert data into a singly linked list.
Why is sprintf unsafe?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
In c language can we compile a program without main() function?
What is pointer to pointer in c language?
What is #include called?
What is a rvalue?
How can I copy just a portion of a string?
Explain how can I pad a string to a known length?
Write a function that will take in a phone number and output all possible alphabetical combinations
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.