What is meant by keywords in c?
No Answer is Posted For this Question
Be the First to Post Answer
why Language C is plateform dependent
What is boolean in c?
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;
two progs are given. one starts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
In C language, a variable name cannot contain?
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..
What is a method in c?
Explain the difference between malloc() and calloc() in c?
what are the advantages & disadvantages of unions?
Is main() function predfined or userdefined?
What is C language Terminator?