Pular para o conteúdo principal

Postagens

Mostrando postagens com o rótulo CHAR

C, strcpy, char, repeat, because I'm happy, sring.h

#include #include int main() {     system("color 1f");     char message[10];     int count,i;     strcpy(message,"because I'm Happy!!");     printf("Repeat how many times?");     scanf("%d",&count);     for(i=0;i     printf("%3d-%s\n",i,message);     system("pause"); }

C++, char, Cin, Cingetline, system,

//C++ Facil //https://www.facebook.com/mxatec.mxatec //http://excelresolve.blogspot.com.br //https://www.tumblr.com/blog/marceloxavblogs #include using namespace std; int main() {     system("color 1f");     int age;     char name[41];     cout<<"\ncodefree.mxatec.com\n";     cout<<"\nInsert age\n";     cin>>age;     cout<<"\nInsert name\n";     cin>>name;     cout<<"\n"<     cout<<"\n\n";     system("pause"); }

C++, sexo, nome, idade, char

#include using namespace std; int main() {   char sexo, nome[30];   cout<<"\nQual seu nome? ";   cin.getline(nome, 30);   cout<<"\nSexo(m/f): ";cin>>sexo;   cout<<"\nSexo: "<   cout<<"\nNome: "<   system( "pause" ); } 

C++, CHAR, ESCREVER AO CONTRÁRIO, STRLEN

//strlen2.cpp #include #include using namespace std; int main() { int a, tam; //dimensionamento e atribuição char frase[]={"Aprender a construir Algoritmos"}; //trecho de saida system("cls"); tam = strlen(frase); for(a=tam-1; a>=0; a--)//aqui faz a diferença para a escrita. cout< cout<<"\n\n"; system("pause"); }