What are reserved words?
No Answer is Posted For this Question
Be the First to Post Answer
any "C" function by default returns an a) int value b) float value c) char value d) a & b
void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?
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..
Explain what are multibyte characters?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
What is a null string in c?
What is main () in c?
What is a pragma?
whether itis a structured language?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is pass by reference in c?
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?