How does the assert() function work?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
How does the assert() function work?
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
assert() checks a condition at runtime. If false, it terminates the program.
| Is This Answer Correct ? | 0 Yes | 0 No |
a 'c' program to tell that the set of three coordinates lie on a same line
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
HOW DO YOU HANDLE EXCEPTIONS IN C?
What are the advantage of c language?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
State the difference between x3 and x[3].
What is string in c language?
What are the benefits of c language?
Why do we use return in c?
Is it possible to execute code even after the program exits the main() function?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .