Last active
April 3, 2025 12:46
-
-
Save erdemalkim/a98773c1d9a16b8a743112f96fb4d0b6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
/* | |
C dilinde tamsayılar long long int, int, short değişken tiplerinde tanımlanırlar. | |
Burada long long int 8 byte, int 4 byte, short ise 2 byte hafıza alanı kaplamaktadır. | |
Aşağıdaki kodu, 4 byte boyutunda bir tamsayı tanımlanayacak ve yazdıracak şekilde düzenleyiniz.. | |
*/ | |
#ifdef CEVAP | |
#define TAG0 int | |
#define TAG1 d | |
#endif | |
int main(void){ | |
TAG0 tamSayi = 1; | |
printf("%TAG1\n",tamSayi); | |
} |
Comments are disabled for this gist.