Home > Back-end >  Programming to explain
Programming to explain

Time:11-10

I just started to learn is a novice programming, programming is very interesting, I am a self-taught, met a problem but now
For example,
# include "stdio.h"

The main ()

{int I, j, the result;

for(i=1; i<10; I++)

{the for (j=1; j<10; J++)

{

Result=I * j;

Printf (" % d % d * - 3=% d ", I, j, result); Left-aligned/* - 3 d, accounted for three */

}

printf("\n"); Newline after each line/* */

}

}
This code in the
"Printf (" % d % d * - 3=% d", I, j, result) "
How to explain, I how also can't read
Please tell which predecessors to explain
The younger brother grateful

CodePudding user response:

You is to look at the video learning? Alphanumeric characters

CodePudding user response:

reference 1st floor ooolinux response:
watch video did you learn? Alphanumeric characters

Not predecessors, I am a self-study books, there is no this explanation

CodePudding user response:

reference 1st floor ooolinux response:
watch video did you learn? Alphanumeric characters

What is learning C language books recommended by the predecessors

CodePudding user response:

Is this your first chapter examples? The several famous book,

CodePudding user response:

% d is the middle of the output of an integer, insert some function is to adjust the format characters, among them the number 3 said width, minus sign "-" forgotten whether truncation functions, suggest the original poster textbooks, read carefully, according to the above example to write step by step debugging, otherwise can't completely
  • Related