Explain how are portions of a program disabled in demo versions?
No Answer is Posted For this Question
Be the First to Post Answer
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321
which operator is known as dummy operator in c?
Why static variable is used in c?
Why is void main used?
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
Why is structure padding done in c?
How can I avoid the abort, retry, fail messages?
what is inline function?
Between macros and functions,which is better to use and why?
Do variables need to be initialized?
List the difference between a 'copy constructor' and a 'assignment operator' in C?