What is floating point constants?
No Answer is Posted For this Question
Be the First to Post Answer
what is bitwise operator?
Do string constants represent numerical values?
What is the difference between c &c++?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
What is the difference between text and binary modes?
What is static memory allocation? Explain
convert 0.9375 to binary
Explain what is a program flowchart and explain how does it help in writing a program?
How many types of operator or there in c?
what is function pointer?
What is meant by high-order and low-order bytes?
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