How can I read/write structures from/to data files?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between i++ and ++i?
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..
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
How can I get random integers in a certain range?
Why c is called top down?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
What is the difference function call by value & function call by reference?
what is the definition of storage classes?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
What is the meaning When we write "#include" what is # and what does include does there???
WAP to accept first name,middle name & last name of a student display its initials?
write a program to copy a string without using a string?