What is return in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
How do we declare variables in c?
program to find error in linklist.(i.e find whether any node point wrongly to previous nodes instead of next node)
how to print a statement in c without use of console statement ,with the help of if statement it should print
What is meant by initialization and how we initialize a variable?
Explain how can I avoid the abort, retry, fail messages?
Find occurence of a character in a sting.
What is Lazy evaluation in C? Give an example.
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..
how to get starting address of a running C program
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
What is difference between union and structure in c?
why effort estimation is important?