Answer Posted / glibwaresoftsolutions
assert() checks a condition at runtime. If false, it terminates the program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
How many keywords are there in c?
What are header files and what are its uses in C programming?
What are run-time errors?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
Which are low level languages?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Why is c called a mid-level programming language?
what is the different bitween abap and abap-hr?
When would you use a pointer to a function?
Explain what are preprocessor directives?
What is a nested formula?
What are pointers? Why are they used?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above