What is malloc return c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you determine whether to use a stream function or a low-level function?
EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>
What would be an example of a structure analogous to structure c?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
How does pointer work in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
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 difference between printf and scanf )?
What are enumerated types?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
Can we write a program without main() function?
Should I learn c before c++?