What is c preprocessor mean?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference b/w main() in C language and main() in 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..
Can the sizeof operator be used to tell the size of an array passed to a function?
write a c program that prints all multiples of 3between 1 and 50.
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
What does char * * argv mean in c?
void main() { int i=5; printf("%d",i++ + ++i); }
how to add our own function in c library please give details.?
1. Can we use the for loop this way? for(;i>5;) 2. What is the use of pointers? 3. what is array of pointer? 4. What is the difference between file and database? 5. Define data structure?
program to convert a integer to string in c language'
What is a structure member in c?
Consider a language that does not have arrays but does have stacks as a data type.and PUSH POP..are all defined .Show how a one dimensional array can be implemented by using two stacks.