What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference b/w Structure & Class?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What are the concepts introduced in OOPs?
How can my program discover the complete pathname to the executable from which it was invoked?
What are the different types of objects used in c?
I have an array of 100 elements, each of which is a random integer. I want to know which of the elements: a) are multiples of 2 b) are multiples of 2 AND 5 c) have a remainder of 3 when divided by 7
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!+....
Tell us bitwise shift operators?
explain what is fifo?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
what is meant by c
12. Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV