what does exit() do?
Answers were Sorted based on User's Feedback
Answer / shruti
nopes,
it does not come out of the executing prog normally..
for that, we have to explicitly mention as
exit(0);
| Is This Answer Correct ? | 7 Yes | 0 No |
Differentiate between new and malloc(), delete and free() ?
what is the importance of spanning tree?
In c programming language, how many parameters can be passed to a function ?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What is the scope of local variable in c?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Tell me what is the purpose of 'register' keyword in c language?
Write a code to generate divisors of an integer?
write an algorithm to display a square matrix.
Write a program on swapping (100, 50)
Write a program to show the workingof auto variable.