What does & mean in scanf?
No Answer is Posted For this Question
Be the First to Post Answer
Why static is used in c?
What is the mean of this statement:: if(int i=0 * i=9)
What is difference between structure and union with example?
Explain the term printf() and scanf() used in c language?
Can a variable be both static and volatile in c?
write a program to display the frequency of each element in a given array in c language
How to draw the flowchart for structure programs?
code for replace tabs with equivalent number of blanks
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
what is mallloc()?how it works?
What are c preprocessors?
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