What are the different types of constants?
No Answer is Posted For this Question
Be the First to Post Answer
What are c header files?
Is there a way to switch on strings?
When the macros gets expanded?
What is the use of getch ()?
What is bash c?
can any one provide me the notes of data structure for ignou cs-62 paper
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..
What is the use of a conditional inclusion statement in C?
List out few of the applications that make use of Multilinked Structures?
Is c weakly typed?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
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.