What do you want to save?
Add Code snippet
New code examples in category C
-
Phoenix Logan 2022-03-03 05:50:38
how to compress a file in c
#include <stdio.h> #include <string.h> //comp() void Compress(unsigned char *szOut, const char *szMessage) { unsigned long long nBuffer = 0; //This is enough to store 8 uncompressed characters or 9 compressed. We will only use 8 tho. char n... Add solution -
Awgiedawgie 2022-03-03 03:15:02
how to find number of rows in datafram R
nrow(<dataframe>) Add solution -
Awgiedawgie 2022-03-02 21:05:43
c program from decimal to binary
#include <stdio.h> #include <math.h> #include <stdlib.h> #define D 10 int main() { int i, n, k, vet[D]; printf("FROM DECIMALS TO BINARIES\nEnter decimal: "); scanf("%d", &n); k = 0; while (n != ... Add solution -
Phoenix Logan 2022-03-01 11:50:03
area and circumference of a circle
#include <stdio.h> #define PI 3.142 int main(){ float r, C, A; printf("What is the radius: \n"); scanf("%f", &r); C = 2 * PI * r; A = PI * r * r; printf("\nCincumference is and %f Area is %f\n&quo... Add solution
Best helpers
Ranking is empty