format code and sign with gpg

This commit is contained in:
juan 2021-09-26 11:19:13 +08:00
parent 1461008519
commit 769d2273d1
No known key found for this signature in database
GPG key ID: 5C1E5093C74F1DC7
2 changed files with 33 additions and 33 deletions

View file

@ -1,7 +1,6 @@
#include <stdio.h>
int main(void)
{
int main(void) {
// initialization
char sex;
int age;
@ -11,6 +10,7 @@ int main(void)
scanf("%c %i %f", &sex, &age, &height);
// print answer to stdout
printf("The sex is %c, the age is %i, and the height is %f.", sex, age, height);
printf("The sex is %c, the age is %i, and the height is %f.", sex, age,
height);
return 0;
}

View file

@ -1,7 +1,6 @@
#include <stdio.h>
int main(void)
{
int main(void) {
// initialize variables
char a;
short b;
@ -19,7 +18,8 @@ int main(void)
printf("The 'short' variable is %hd, it takes %ld bytes.\n", b, sizeof(b));
printf("The 'int' variable is %i, it takes %ld bytes.\n", c, sizeof(c));
printf("The 'long' variable is %ld, it takes %ld bytes.\n", d, sizeof(d));
printf("The 'long long' variable is %lld, it takes %ld bytes.\n", e, sizeof(e));
printf("The 'long long' variable is %lld, it takes %ld bytes.\n", e,
sizeof(e));
printf("The 'float' variable is %f, it takes %ld bytes.\n", f, sizeof(f));
printf("The 'double' variable is %lf, it takes %ld bytes.\n", g, sizeof(g));