How to write a code for implementing my own printf() and
scanf().... Please hep me in this... I need a guidance...
Can you give an coding for c... Please also explain about
the header files used other than #include<stdio.h>...
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of ~ in c lang?????
Explain 'bus error'?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
What is data structure in c language?
Please list all the unary and binary operators in C.
Why calloc is better than malloc?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
what are the uses of structure?
Explain what is gets() function?
What are 3 types of structures?
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..