#include<stdio.h>
#include<stdlib.h>

void solution(char name_for_solution[]);

void main(void)
{
char name[10];

printf("Enter your name: ");
gets(name);
system("cls");
solution(name);

}


void solution(char name_for_solution[])
{


printf("%s, understanding what this does is a good start!\n\n",name_for_solution);
system("pause");

}




/* Try to understand what does this do and you are in the good way... i think*/