What are the primitive data types in c?
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
What is the scope of global variable in c?
What are the 4 types of organizational structures?
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);
What are local and global variables?
pierrot's divisor program using c or c++ code
How would you write qsort?
Give me the code of in-order recursive and non-recursive.
Explain what is the purpose of "extern" keyword in a function declaration?
Wt are the Buses in C Language
What are operators in c?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }