Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
int main() { int normalInt = 1000; double normalDouble = 3.14; short int small = -100; unsigned int count = 25; long int big = 1234567890; long long int veryBig = 9223372036854775807; unsigned long long int huge = 18446744073709551615U; long double precise = 3.141592653589793238L; printf("Normal int: %d\n", normalInt); printf("Normal double: %lf\n", normalDouble); printf("Small: %hd\n", small); printf("Count: %u\n", count); printf("Big: %ld\n", big); printf("Very Big: %lld\n", veryBig); printf("Huge: %llu\n", huge); printf("Precise: %.18Lf\n", precise); return 0; }
Normal int: 1000
Normal double: 3.140000
Small: -100
Count: 25
Big: 1234567890
Very Big: 9223372036854775807
Huge: 18446744073709551615
Precise: 3.141592653589793238