Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How does the assert() function work?

Answers were Sorted based on User's Feedback



How does the assert() function work?..

Answer / nashiinformaticssolutions

How does the assert() function work?

Is This Answer Correct ?    0 Yes 0 No

How does the assert() function work?..

Answer / glibwaresoftsolutions

assert() checks a condition at runtime. If false, it terminates the program.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Is it valid to address one element beyond the end of an array?

0 Answers  


What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

3 Answers   Accenture,


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

0 Answers   Wilco,


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

0 Answers  


How to write the code of the program to swap two numbers with in one statement?

2 Answers  


how to write a program which adds two numbers without using semicolon in c

2 Answers  


write a progam to display the factors of a given number and disply how many prime numbers are there?

2 Answers  


what is the difference between NULL('\0') and 0?

14 Answers   Microsoft,


How to find the digits truncation when assigning the interger variable to the character variables. like int i=500; char x = i : here we have truncation. how to find this. another ex: i =100; char x=i. here we do not have truncation.

1 Answers   HCL,


Where static variables are stored in c?

0 Answers  


Where is c used?

0 Answers  


How variables are declared in c?

0 Answers  


Categories