Why we use void main in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the concepts introduced in OOPs?
What is the general form of #line preprocessor?
C program to perform stack operation using singly linked list
Given an array of numbers, except for one number all the others occur twice. Give an algorithm to find that number which occurs only once in the array.
What are the different data types in C?
What are the loops in c?
Why n++ execute faster than n+1 ?
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 arithmetic operation can’t be performed on a void pointer?
main() { charx; while (x=0;x<=255;x++) printf("\nAscii value %d Character %c,x,x); }
What is static and volatile in c?
Define macros.