What are different storage class specifiers in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to copy the string using switch case?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
Explain what is a stream?
How do you determine if a string is a palindrome?
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..
why you will give me a job in TCS.
What are pointers really good for, anyway?
What is local and global variable in c?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
What is a wrapper function in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?