Constants
C Basics
// outside scope: define constants #define LENGTH 10 #define WIDTH 5 // inside scope: define constants const int LENGTH = 10; const int WIDTH = 5;
Updated on May 27, 2023 Changelog