Skip to content

Commit

Permalink
task: Declare on single line
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Mocanu <[email protected]>
  • Loading branch information
gabrielmocanu committed Mar 30, 2024
1 parent 4a30c3d commit 575a8bc
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,8 @@

int main(void)
{
signed int a;
signed int b;
signed int c;
signed int d;
signed char c1 = 100;
signed char c2 = 100;
signed char c3;
signed char c4 = 127;
signed char c5 = 127;
signed char c6;
signed int a, b, c, d;
signed char c1 = 100, c2 = 100, c3, c4 = 127, c5 = 127, c6;

c3 = c1 + c2;
a = c3;
Expand Down

0 comments on commit 575a8bc

Please sign in to comment.