A voir également:
- Petit probleme dargument en language c
- Excel trier du plus grand au plus petit - Guide
- Photoshop french language pack ✓ - Forum Photoshop
- Petit 1 comme ² ✓ - Forum Windows
- Comment écrire un chiffre en petit caractè ✓ - Forum Bureautique
- Ème en petit ✓ - Forum LibreOffice / OpenOffice
2 réponses
tu prendre ton argv et tu lui ajouter un "/" au debut avec la fonction strcat
ex:
/* strcat example */
#include <stdio.h>
#include <string.h>
int main ()
{
char str[80];
strcpy (str,"these ");
strcat (str,"strings ");
strcat (str,"are ");
strcat (str,"concatenated.");
puts (str);
return 0;
} il "affiche these strings are concatenated."
ex:
/* strcat example */
#include <stdio.h>
#include <string.h>
int main ()
{
char str[80];
strcpy (str,"these ");
strcat (str,"strings ");
strcat (str,"are ");
strcat (str,"concatenated.");
puts (str);
return 0;
} il "affiche these strings are concatenated."