What is property type c?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we use pointer to pointer in c?
Can you write the function prototype, definition and mention the other requirements.
How can I dynamically allocate arrays?
Difference Between embedded software and soft ware?
What is difference between union and structure in c?
What is "Hungarian Notation"?
Explain what is the difference between #include and #include 'file' ?
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..
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What are the parts of c program?
write a program to concatenation the string using switch case?