eski kodlar silindi ders yeniden

This commit is contained in:
Mert Gör 2024-08-10 13:27:58 +03:00
parent e482e0e22b
commit c41863ae9d
No known key found for this signature in database
GPG key ID: 03E547D043AB6C8F
20 changed files with 4 additions and 321 deletions

View file

@ -1,12 +0,0 @@
#include <stdio.h>
int main()
{
int a = 10, b = 20;
printf("a = %d, b = %d\n", a, b); /* a = 10, b = 20 */
printf("a = %d, b = %d\n", b, a); /* a = 20, b = 10 */
printf("%d%d\n", a, b); /* 1020 */
return 0;
}