Skip to forum content

You are not logged in. Please login or register.


forums.pvpgn.pro → [RU] The Source Code → Конвертация

Pages 1

You must login or register to post a reply

RSS topic feed

Posts: 5

1

Topic: Конвертация

у меня чтото не получается char конвертировать в int, а именно:

    char                arg3[256];
              char*                 timeout;
    int                tempd = 0;

...

    for (; t[i]==' '; i++); 
    for (j=0; t[i]!='\0'; i++)
    if (j<sizeof(arg3)-1) arg3[j++] = t[i];
    arg3[j] = '\0';

...

    timeout = arg3;
    tempd = (int) timeout;

2

Re: Конвертация

char int * ...

??

3

Re: Конвертация

лал

Добавлено: 04.02.2014 22:20

не очень понял

4

Re: Конвертация

Suite wrote:

у меня чтото не получается char конвертировать в int, а именно:
 

  timeout = arg3;
    tempd = (int) timeout;

Сотри эту порнушку и вставь это:

tempd = atoi(arg3);

5

Re: Конвертация

спасибо, помогло

Posts: 5

Pages 1

You must login or register to post a reply

Who now at forum

Currently view post: 1 guest, 0 registered users

forums.pvpgn.pro → [RU] The Source Code → Конвертация