Explain pointer. What are function pointers in C?
No Answer is Posted For this Question
Be the First to Post Answer
How do I use void main?
What is extern keyword in c?
Differentiate b/w Modify and Update commands giving example.
What is switch in c?
write a program of bubble sort using pointer?
What are pointers in C? Give an example where to illustrate their significance.
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..
write a programe returns the number of times the character appears in the string
what is a c-language.what is do.
What does sizeof int return?
What is difference between structure and union in c?
1. Write a C program to count the number of occurrence of a specific word in the given strings. (for e.g. Find how many times the word “live” comes in the sentence “Dream as if you’ll live forever, live as if you’ll die today ”)