Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- #include <stdio.h>
- __int8 sz[99] = "catdog";
- char d;
- __int32 i = 1;
- ////////////////////////////////////////////////////
- int main() //
- {
- for(i = 0; i < 6; i++)
- {
- if(sz[i] == 'd')
- {
- goto L_01;
- }
- printf("%c", sz[i]);
- }
- L_01: int n1;
- }
- */
- #include <stdio.h>
- int nArr[10] = {0, 7, 14, 21, 28, 35, 42, 49, 56, 9};
- // почему не могу указать `10 ячеек в массиве, ведь первая это 0. Приходится 11.
- ////////////////////////////////////////////////////
- int main() //
- {
- for(int i=0; ;)
- {
- if(i > 9) break;
- printf("7*%d = %d\n", i, nArr[i]);
- i++;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement