Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- // opipoipo
- void foo(char *p);
- ////////////////////////////////////////////////////
- int main() //
- {
- char sz[99];
- strcpy(sz, "SONY Pictures");
- char c = '0';
- foo(&sz[7]);
- }
- ////////////////////////////////////////////////////
- void foo(char *p) //
- {
- p = p - 7;
- p[8] = 87;
- printf("p = %s\n", p);
- }
- /*
- #include <stdio.h>
- #include <string.h>
- // opipoipo
- void foo(char *p);
- ////////////////////////////////////////////////////
- int main() //
- {
- char sz[99];
- strcpy(sz, "SONY Pictures");
- char c = '0';
- foo(&sz[7]);
- }
- ////////////////////////////////////////////////////
- void foo(char *p) //
- {
- p = p - 7;
- for(int i = 0; i < 15; i++)
- {
- printf("p[%d] = %c\n", i, p[i]);
- }
- }
- */
- /*
- #include <stdio.h>
- #include <string.h>
- // opipoipo
- void foo(char *p);
- char sz[99]; // = "SONY";
- ////////////////////////////////////////////////////
- int main() //
- {
- strcpy(sz, "SONY");
- char c = '0';
- foo(sz);
- }
- ////////////////////////////////////////////////////
- void foo(char *p) //
- {
- for(int i = 0; i < 15; i++)
- {
- printf("p[%2d] = %2d\n", i, p[i]);
- }
- }
- */
- /*
- #include <stdio.h>
- // opipoipo
- void foo(char *p);
- ////////////////////////////////////////////////////
- int main() //
- {
- char sz[99] = "SONY";
- char c = '0';
- foo(sz);
- }
- ////////////////////////////////////////////////////
- void foo(char *p) //
- {
- for(int i = 0; i < 5; i++)
- {
- printf("p[%d] = %d\n", i, p[i]);
- }
- }
- */
- /*
- #include <stdio.h>
- // opipoipoi
- int n1 = 7;
- __int32 n2 = 99;
- __int8 n3 = 99;
- void foo(char *p);
- ////////////////////////////////////////////////////
- int main() //
- {
- char sz[99] = "SONY";
- printf("size of char = %d\n", sizeof( sz[7]) );
- printf("size of int = %d\n", sizeof( n3 ) );
- }
- ////////////////////////////////////////////////////
- void foo(char *p) //
- {
- }
- */
- /*
- #include <iostream>
- using namespace std;
- int a, // kljklj
- sum, // kljlkjlkj
- total; // opipoipoi
- int book();
- ////////////////////////////////////////////////////
- int main() //
- {
- setlocale(LC_ALL, "Russian");
- cout << "Введите количество книг: ";
- cin >> a;
- book();
- return 0;
- }
- /////////////////////////////////////////////////////
- int book() //
- {
- int nPart = a/7,
- nOst = a%7;
- cout << "nPart = " << nPart << endl;
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement