Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- ///////////////////////////////////////////////////
- void foo(char *p)
- {
- printf("%s\n", p);
- }
- ////////////////////////////////////////////////// sz[7] = 0;
- int main() //
- {
- char sz[19] = "_Pictures";
- foo(&sz[1]);
- }
- /*
- #include <stdio.h>
- #include <string.h>
- char sz [19] = "SONY",
- sz2[19] = "_Pictures";
- ////////////////////////////////////////////////// sz[7] = 0;
- int main() //
- {
- strcat(sz, sz2); printf("%s\n", sz);
- // strcpy(sz, sz2); printf("%s\n", sz);
- }
- */
- /*
- #include <stdio.h>
- //#include <string.h>
- char sz[19] = "SONY=-_Pictures";
- int _strlen(char *p);
- ////////////////////////////////////////////////// sz[7] = 0;
- int main() //
- {
- sz[1] = 84;
- printf("%s\n", sz); sz[4] = 32;
- printf("%s\n", sz);
- int nLen = _strlen(sz);
- printf("nLen = %d\n", nLen);
- }
- ///////////////////////////////////////////////////
- int _strlen(char *p)
- {
- int n = 0;
- L_01: n++;
- if(sz[n] != 0) goto L_01;
- //while(sz[++n] != 0);
- return n;
- }
- */
- /*
- #include <stdio.h>
- //#include <string.h>
- char sz[19] = "SONY=-_Pictures";
- int _strlen(char *p);
- ////////////////////////////////////////////////// sz[7] = 0;
- int main() //
- {
- sz[1] = 84;
- printf("%s\n", sz); sz[4] = 32;
- printf("%s\n", sz);
- int nLen = _strlen(sz);
- printf("nLen = %d\n", nLen);
- }
- ///////////////////////////////////////////////////
- int _strlen(char *p)
- {
- int n = 0;
- while(sz[++n] != 0);
- return n;
- }
- */
- /*
- #include <stdio.h>
- //#include <string.h>
- char sz[19] = "SONY=-_Pictures";
- int _strlen(char *p);
- ////////////////////////////////////////////////// sz[7] = 0;
- int main() //
- {
- sz[1] = 84;
- printf("%s\n", sz); sz[4] = 32;
- printf("%s\n", sz);
- int nLen = _strlen(sz);
- printf("nLen = %d\n", nLen);
- }
- ///////////////////////////////////////////////////
- int _strlen(char *p)
- {
- int n = 0;
- for(;;)
- {
- if(sz[n] == 0) break;
- n++;
- }
- return n;
- }
- */
- /*
- #include <stdio.h>
- #include <string.h>
- char sz[19] = "SONY_Pictures";
- int _strlen(char *p);
- ////////////////////////////////////////////////// sz[7] = 0;
- int main() //
- {
- sz[1] = 84;
- printf("%s\n", sz); sz[4] = 32;
- printf("%s\n", sz);
- int nLen = _strlen(sz);
- printf("nLen = %d\n", nLen);
- }
- ///////////////////////////////////////////////////
- int _strlen(char *p)
- {
- int n = 0;
- for(int i = 0; i < 1000; i++)
- {
- if(sz[i] == 0) break;
- n ++;
- }
- return n;
- }
- */
- /*
- #include <iostream>
- using namespace std;
- //////////////////////////////////////////////////
- int main() //
- {
- int a = 1000; // ЦЕНА КНИГ
- cout << a << endl;
- int b = 55; // БУДЕТ УМЕНЬШАТЬСЯ ЦЕНА
- int c = 40; // КОЛВО КНИГ
- const int Bmax = 8;// ОДИН КРУГ КНИГ
- int v = 0; // ТО ЧТО МЫ УЗНАЕМ
- int n=8; // СКОЛЬКО ОН УЖЕ КУПИЛ
- int del = c / n;
- int tab[7] = { 1000, 945, 890, 835, 780, 725, 665 }, // kjllkjlkj
- sum = 0; // kjhkljhlk
- for(int i = 0; i < 7; i++)
- {
- sum = sum + tab[i];
- }
- v = sum * del;
- cout << v;
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement