Programa -PRUEBA DE CADENA Y SALTO POR LECTURA DE CARACTER NULO:

PRUEBA DE CADENA Y SALTO POR LECTURA DE CARÁCTER NULO:


#include<iostream>
#include<string.h>
using namespace std;
int main()
{
char uno[]={'e','j''e','m','p','l','o','o','\0','F'};
char len;
len=strlen(uno);
for (int i=0;i<=len; i=i+1)
    { 
cout<<uno[i];
if (uno[i]=='\0')
        {
cout<<endl;
for (int i=0;i<=len; i=i+1)
cout<<uno[i];

        }

    }
cin.get ();
}
Share on Google Plus
    Blogger Comment

0 comentarios:

Publicar un comentario