Why do we use main function?
No Answer is Posted For this Question
Be the First to Post Answer
What is the function of volatile in c language?
Why ca not I do something like this?
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..
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
writ a program to compare using strcmp VIVA and viva with its output.
who is first prime minister in india??
what is y value of the code if input x=10 y=5; if (x==10) else if(x==9) elae y=8; a.9 b.8 c.6 d.7
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement