# C++ Sabitler
C++ Sabitler konusunu işliyoruz.
1. define Tanımlayıcı Değer
#include <iostream>
using namespace std;
#define UZUNLUK 10
#define GENISLIK 5
int main() {
int alan;
alan = UZUNLUK * GENISLIK ;
cout << alan;
return 0;
}2. const Anahtar Kelimesi
3. #define ve const Arasındaki Fark
Last updated