Why string is used in c?
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
write a program structure to find average of given number
What is the difference between File pointer and Internal Charecter Pointer?
What are the primitive data types in c?
related proverb of "dont count your chicken before it hatches"
Can we assign string to char pointer?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
while running a program, i got the msg that press return key to exit.what that mean in C as there are no such options as far i know.
what is the difference between declaration ,defenetion and initialization of a variable?
What is the scope of static variable 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..
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.