Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int n = 7;
- int i = 2;
- ////////////////////////////////////////////////////
- int main() //
- {
- a2Dima:
- printf("%d * %d = %d\n", n, i, n*i);
- if(i++ > 8) goto L_01;
- goto a2Dima;
- L_01: return 0;
- }
- /*
- #include <stdio.h>
- int n = 7;
- ////////////////////////////////////////////////////
- int main() //
- {
- for(int i = 2; i < 10; i++)
- {
- printf("%d * %d = %d\n", n, i, n*i);
- }
- }
- */
- /*
- #include <iostream>
- using namespace std;
- #include <stdio.h>
- int n;
- double f;
- //////////////////////////////////////////////////// std::
- int main() //
- {
- printf("sizeof int = %d \n", sizeof(n));
- cout << "Hello !\n";
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement