When you call malloc() to allocate memory for a local
pointer, do you have to explicitly free() it?
Answers were Sorted based on User's Feedback
why java is called as a purely oops language.
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
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
main() { clrscr(); } clrscr();
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is volatile in c language?
what does keyword ‘extern’ mean in a function declaration?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
Write a program to print numbers from 1 to 100 without using loop in c?
What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }
disadvantages of realloc ?
who developed c and why he developed c?