SORU
13 EKİM 2008, PAZARTESİ


Nasıl C veya C yerine bir dize ters musunuz ?

Nasıl ayrı bir tampon tersine dize tutmak gerek kalmadan C veya C bir dize ters musunuz?

CEVAP
14 EKİM 2008, Salı


Açıklama satırı yazmak ve Ritchie oku

#include <string.h>

void reverse(char s[])
{
    int length = strlen(s) ;
    int c, i, j;

    for (i = 0, j = length - 1; i < j; i  , j--)
    {
        c = s[i];
        s[i] = s[j];
        s[j] = c;
    }
}

Bunu Paylaş:
  • Google+
  • E-Posta
Etiketler:

YORUMLAR

SPONSOR VİDEO

Rastgele Yazarlar

  • adrianisen

    adrianisen

    25 Kasım 2009
  • ELawshea

    ELawshea

    26 Mayıs 2008
  • esnathesinger

    esnathesinge

    6 NİSAN 2009