Sorting entire link list using selection sort and insertion
sort and calculating their time complexity
Answer / shiju
insertion sort took more time, because it done after
complete selection sort...
| Is This Answer Correct ? | 1 Yes | 10 No |
main() { static int var = 5; printf("%d ",var--); if(var) main(); }
Write a program to model an exploding firecracker in the xy plane using a particle system
To reverse an entire text file into another text file.... get d file names in cmd line
void main() { int i=5; printf("%d",i++ + ++i); }
Is there any difference between the two declarations, 1. int foo(int *arr[]) and 2. int foo(int *arr[2])
Write a single line c expression to delete a,b,c from aabbcc
main() { int *j; { int i=10; j=&i; } printf("%d",*j); }
How to return multiple values from a function?
write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"
main() { int i=5; printf(ā%dā,i=++i ==6); }
main() { int c[ ]={2.8,3.4,4,6.7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf(" %d ",*c); ++q; } for(j=0;j<5;j++){ printf(" %d ",*p); ++p; } }
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?