Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- ////////////////////////////////////////////
- int main() //
- {
- unsigned __int8 n = 252; // 8 bits
- for(int i = 0; i < 20; i++)
- {
- printf("n = %4d\n", n);
- n++;
- }
- }
- /*
- #include <stdio.h>
- ////////////////////////////////////////////
- int main() //
- {
- unsigned __int8 n = 252; // 8 bits
- for(int i = 0; i < 20; i++)
- {
- printf("n = %4d\n", n);
- n++;
- }
- }
- */
- /*
- #include <stdio.h>
- ////////////////////////////////////////////
- int main() //
- {
- int n = 7;
- int n2 = n + 2;
- printf("n2 = %d", n2);
- }
- */
- /*
- #include <iostream>
- using namespace std;
- int main()
- {
- setlocale(LC_ALL, "rus");
- cout << "Привет - Hello !" << endl;
- return 0;
- }
- */
- // ( )
- // ( )
- // ( )
- // ( )
- // ) )
- // ( ( /\
- // (_) / \ /\
- // ________[_]________ /\/ \/ \
- // /\ /\ ______ \ / /\/\ /\/\
- // / \ //_\ \ /\ \ /\/\/ \/ \
- // /\ / /\/\ //___\ \__/ \ \/
- // / \ /\/ \//_____\ \ |[]| \
- // /\/\/\/ //_______\ \|__| \
- // / \ /XXXXXXXXXX\ \
- // \ /_I_II I__I_\__________________\
- // I_I| I__I_____[]_|_[]_____I
- // I_II I__I_____[]_|_[]_____I
- // I II__I I XXXXXXX I
- // E-mail: dllbridge@gmail.com
- // Альтернативный вариант простейшей программы. Exe-файл будет "весить" меньше в несколько десятков раз !!!
- /*
- #include <stdio.h>
- #include <locale.h> // здесь "живёт" setlocale(LC_ALL, "rus");
- int main()
- {
- setlocale(LC_ALL, "rus");
- printf("Верные символы %d", 77);
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement