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 difference between exit() and _exit() function in c?
Are the outer parentheses in return statements really optional?
the data type used for unlimited value in c and how to do this program
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What is ## preprocessor operator in c?
Can i use “int” data type to store the value 32768? Why?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
What does %p mean?
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
What is main () in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.