[ Foro de C ]

Al final he encontrado lo que buscaba, pero viene ingles el turtorial de C, mi ingles es casi muy alto. En castellano

10-Oct-2020 17:27
Invitado (Iv?n Rodellas garc?a)
0 Respuestas

#include <stdio.h>    /* stdin, printf, and fgets */
#include <string.h>   /* for all the new-fangled string functions */

/* this function is designed to remove the newline from the end of a string
entered using fgets.  Note that since we make this into its own function, we
could easily choose a better technique for removing the newline.  Aren't
functions great? */
void strip_newline( char *str, int size )
{
   int i;

   /* remove the null terminator */
   for (  i = 0; i < size; ++i )
   {
       if ( str[i] == '\n' )
       {
           str[i] = '\0';

           /* we're done, so just exit the function by returning */
           return;  
       }
   }
   /* if we get all the way to here, there must not have been a newline! */
}

int main()
{
   char name[50];
   char lastname[50];
   char fullname[100]; /* Big enough to hold both name and lastname */

   printf( "Please enter your name: " );
   fgets( name, 50, stdin );

   /* see definition above */
   strip_newline( name, 50 );

   /* strcmp returns zero when the two strings are equal */
   if ( strcmp ( name, "Alex" ) == 0 )
   {
       printf( "That's my name too.\n" );
   }
   else                                    
   {
       printf( "That's not my name.\n" );
   }
   // Find the length of your name
   printf( "Your name is %d letters long", strlen ( name ) );
   printf( "Enter your last name: " );
   fgets( lastname, 50, stdin );
   strip_newline( lastname, 50 );
   fullname[0] = '\0';            
   /* strcat will look for the \0 and add the second string starting at
      that location */
   strcat( fullname, name );     /* Copy name into full name */
   strcat( fullname, " " );      /* Separate the names by a space */
   strcat( fullname, lastname ); /* Copy lastname onto the end of fullname */
   printf( "Your full name is %s\n",fullname );

   getchar();

   return 0;
}

noentras2@debian:~/humillacion$ ./listadillo
Please enter your name: ivan
That's not my name.
Your name is 4 letters longEnter your last name: 44
Your full name is ivan 44


https://www.cprogramming.com/tutorial/c-tutorial.html

Este es el tutorial que estoy buscando pero en castellano, mi ingles es alto casi muy alto.

No me viene de gusto, traducir. El "Hello world", de c, eso lo se yo desde el año 1997.







(No se puede continuar esta discusión porque tiene más de dos meses de antigüedad. Si tienes dudas parecidas, abre un nuevo hilo.)