Skip to content

Instantly share code, notes, and snippets.

@Nashtic
Created March 6, 2020 19:21
Show Gist options
  • Save Nashtic/0b93c4c034beac117e65d28780efe118 to your computer and use it in GitHub Desktop.
Save Nashtic/0b93c4c034beac117e65d28780efe118 to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
int main()
{
char ch[100]="C";
char b[100]="Dilini";
char last[100]="Ogrenmeye Hosgeldiniz!!";
scanf("%c%*c", &ch);
scanf("%s%*c", &b);
scanf("%[^\n]%*c", &last);
printf("%s\n", ch);
printf("%s\n", b);
printf("%s", last);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment