f2380eef05
git-subtree-dir: lcthw-remnants git-subtree-mainline:4107485591
git-subtree-split:e172f73c82
23 lines
707 B
C
23 lines
707 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int distance = 0xaf + 0747;
|
|
float power = 2.345f + 'Z' + 'A' + 'P';
|
|
double super_power = 56789.4532f;
|
|
char initial = 'A';
|
|
char first_name[] = "Zed";
|
|
char last_name[] = {'S', 'h', 'a', 'w', '\0'};
|
|
|
|
printf("You are %08d miles away.\n", distance);
|
|
printf("You have %.2f levels of power.\n", power);
|
|
printf("You have %.3f awesome super powers.\n", super_power);
|
|
printf("I have an initial %c.\n", initial);
|
|
printf("I have a first name %s.\n", first_name);
|
|
printf("I have a last name %s.\n", last_name);
|
|
printf("My whole name is %s %c. %s.\n",
|
|
first_name, initial, last_name);
|
|
|
|
return 0;
|
|
}
|