update 2025 01 07

This commit is contained in:
Mert Gör
2025-01-07 12:28:44 +03:00
parent 32a2ccab9e
commit d2cf1c4028
2 changed files with 18 additions and 0 deletions

13
c-basic/single_quote.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
int main()
{
char ch1 = '\"';
char ch2 = '"';
printf("%c, %c\n", ch1, ch2);
printf("\"Ankara\"\n");
return 0;
}