Search:

Type: Posts; User: ScariuM

Search: Search took 0.00 seconds.

  1. Thread: Functions

    by ScariuM
    Replies
    8
    Views
    1,065

    i missed ";" Thanks a lot to everybody!!!!!!!

    i missed ";"

    Thanks a lot to everybody!!!!!!!
  2. Thread: Functions

    by ScariuM
    Replies
    8
    Views
    1,065

    #include int zm(char *s) { int i;...

    #include <stdio.h>
    int zm(char *s)
    {
    int i;
    for(i=0;s[i]!='\0';i++)
    {
    if (s[i]==' ')
    s[i]='_';
    return *s;
    }
  3. Thread: Functions

    by ScariuM
    Replies
    8
    Views
    1,065

    Functions

    Hello everybody!
    I need to create a function from

    #include <stdio.h>
    main()
    {
    int i;
    char s[10];
    gets(s);
    for(i=0;s[i]!='\0';i++)
  4. Thread: Help me please

    by ScariuM
    Replies
    2
    Views
    831

    Help me please

    Hello everybody!
    I have to change space to _ , but something is wrong with my program...
    Could anybody tell me a mistake?

    #include <stdio.h>
    main()
    {
    int i;
    char s[10];
    gets(s);
  5. Thread: Test-program

    by ScariuM
    Replies
    6
    Views
    2,480

    I'm so sorry... I'll try to think how to do this...

    I'm so sorry...
    I'll try to think how to do this program. Thanks a lot for your forum, I've found some examples
  6. Thread: Test-program

    by ScariuM
    Replies
    6
    Views
    2,480

    I mean quiz

    I mean quiz
  7. Thread: Test-program

    by ScariuM
    Replies
    6
    Views
    2,480

    Test-program

    Hello, everybody!
    Help me please. I need to write test-program on C.
    Maybe someone has such program.
    Please, send it. I'll be very grateful.
Results 1 to 7 of 7