What functions are used for dynamic memory allocation in c language?
how 2 compile & execute c program with out using editor?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
What is the data segment that is followed by c?
how to write a c program to print list of fruits in alpabetical order?
What are signals in C?
main() { int i,n=010; int sum=0; for(i=1;i<=n;i++) {s=s+i; } printf("%d",&s); getch(); }
write a program to create a sparse matrix using dynamic memory allocation.
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
Explain what is the advantage of a random access file?
Does c have circular shift operators?
pierrot's divisor program using c or c++ code