Created
March 6, 2020 19:21
-
-
Save Nashtic/0b93c4c034beac117e65d28780efe118 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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