Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- /////////////////////////////////////////////////////////////
- int main() //
- {
- char sz2[99] = "%d\n";
- int n = 515;
- int *p = &n;
- printf("%d\n", n );
- printf(sz2 , &n );
- printf(sz2 , p );
- printf(sz2 , *p );
- }
- /*
- #include <stdio.h>
- /////////////////////////////////////////////////////////////
- int main() //
- {
- char sz2[99] = "%d\n";
- int n = 515;
- printf("%d\n", 77 );
- printf(sz2 , n );
- }
- */
- /*
- #include <stdio.h>
- /////////////////////////////////////////////////////////////
- int main() //
- {
- char sz [99] = "SONY",
- sz2[99] = "%s\n";
- printf("SONY\n");
- printf("%s\n", "SONY");
- printf("%s\n", sz );
- printf(sz2 , sz );
- }
- */
- /*
- #include <stdlib.h>
- #include <fstream>
- #include <iostream>
- using namespace std;
- /////////////////////////////////////////////////////////////
- int main() //
- {
- int n = 0;
- ifstream fin("array.txt"); // открыли файл для чтения
- fin >> n;
- int *p = new int(n);
- // int *p = (int*)malloc(n * sizeof(int));
- for(int i = 0; i < n; i += 1)
- {
- fin >> nArr[i];
- }
- for(int i = n-1; i >= 0; i--)
- {
- cout << nArr[i] << " ";
- } cout << endl;
- // free(p);
- delete []p;
- fin.close(); // закрываем файл
- return 0;
- }
- */
- // cout << n << endl;
- /*
- #include <fstream>
- #include <iostream>
- using namespace std;
- /////////////////////////////////////////////////////////////
- int main()
- {
- int nArr[99],
- n = 0 ;
- ifstream fin("array.txt"); // открыли файл для чтения
- fin >> n;
- cout << n << endl;
- for(int i = 0; i < n; i++) fin >> nArr[i];
- for(int i = n-1; i >= 0; i = i - 1)
- {
- cout << nArr[i] << ", ";
- } cout << endl;
- fin.close(); // закрываем файл
- return 0;
- }
- */
- /*
- #include <fstream>
- #include <iostream>
- using namespace std;
- /////////////////////////////////////////////////////////////
- int main()
- {
- int nArr[99],
- n = 0 ;
- ifstream fin("array.txt"); // открыли файл для чтения
- fin >> n;
- cout << n << endl;
- for(int i = 0; i < n; i++)
- {
- fin >> nArr[i];
- cout << nArr[i] << ", ";
- } cout << endl;
- fin.close(); // закрываем файл
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement