What is the relationship between pointers and data structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is an array? What the different types of arrays in c?
What is s in c?
What is array of pointers to string?
What is LINKED LIST? How can you access the last element in a linked list?
write a c programme for add of two numbers with out use of arthematic operators
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
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..
Write a program in C to reverse a number by recursive function?
Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
Can a program have multiple main() functions?
What is the difference between far and near in c?
What is an lvalue in c?