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 |
What is the output of printf("%d", printf("Hello"));?
if we take a number as a char then can we manipulate(add, subtract) on this number
Which node is more powerful and can handle local information processing or graphics processing?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Where is c used?
What will the preprocessor do for a program?
How to convert decimal to binary in C using recursion??
How is actual parameter different from the formal parameter?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
Explain the importance and use of each component of this string: Foo.Bar, Version=2.0.205.0, Culture=neutral, PublicKeyToken=593777ae2d274679d
Explain how does flowchart help in writing a program?
Tell us two differences between new () and malloc ()?