What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
No Answer is Posted For this Question
Be the First to Post Answer
What is macro?
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
What is identifiers in c with examples?
Determine the code below, tell me exactly how many times is the operation sum++ performed ? for ( i = 0; i < 100; i++ ) for ( j = 100; j > 100 - i; j--) sum++;
How can you access memory located at a certain address?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..
define string ?
Explain two-dimensional array.
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
Are pointers really faster than arrays?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15