Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by ivanthegg

  1. I

    hello

    write me if you need help with coding, C, Linux, IPC
  2. I

    C Connecting between two codes in C

    hey #include <stdio.h> #include <string.h> int main() { int n = 3; int m = 11; char str[n][m]; char temp[m]; for (int x = 0; x < n; x++) scanf("%s", str[x]); for (int x = 0; x < n; x++) { for (int y = 1 + x; y < n; y++) { if (strcmp(str[y + 1], str[y])...
  3. I

    C writing a code in C with strcmp that create dictionary

    It seem like you just want to reverse the strings ? so if you read: h1 h2 h3 .... you want: h3 h2 h1 ?? if so then here is the code: #include <stdio.h> int main() { int n = 10; char str[n][11]; for (int x = 0; x < n; x++) scanf("%s", str[x]); puts(""); for (int x...
Back
Top Bottom