12 Mart 2010 Cuma

C++ Char Tipinde Dizi Tanımlamak

//www.ethemsulan.com
#include <cstdlib>
#include <iostream>
using namespace std;
void fonk(char *p){
     for(;*p!='\0';p++) cout<<p<<endl;
     cout<<endl;
     }
int main(int argc, char *argv[])
{   
char alfabe[]="A B C D E F G H İ J K L M N O P R S T U W V Y Z";
    fonk(alfabe);
            cout<<endl;
    system("PAUSE");
    return EXIT_SUCCESS;
}

Hiç yorum yok:

Yorum Gönder