Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- #include <stdio.h>
- int n = 19;
- ////////////////////////////////////////////////////////
- int main() //
- {
- printf("kjlhadf = %d\n", 19%7);
- printf("kjlhadf = %d\n", 19/7);
- }
- */
- #include <stdio.h>
- namespace Sobolev
- {
- int n = 121;
- }
- using namespace Sobolev;
- ////////////////////////////////////////////////////////
- int main() //
- {
- int n = 4444;
- printf("n = %d\n", Sobolev::n);
- }
- /*
- #include <stdio.h>
- char c = 'F';
- char sz[100] = "SONY";
- ////////////////////////////////////////////////////////
- int main() //
- {
- sz[4] = 'w';//65;
- printf(sz);
- }
- */
- /*
- #include <stdio.h>
- char c = 'F';
- char sz[100] = "SONY";
- ////////////////////////////////////////////////////////
- int main() //
- {
- printf(sz);
- printf("\n %s \n", sz);
- printf("char c = %d", c);
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement