Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void foo();
- /////////////////////////////////////////////////////
- int main() //
- {
- foo();
- foo();
- }
- ///////////////////////////////////////////////////
- void foo() //
- {
- static int n = 1;
- printf("%d\n", n);
- n += 5; //n = n + 5;
- }
- /*
- #include <stdio.h>
- int n = 77;
- /////////////////////////////////////////////////////
- int main() //
- {
- if(n == 15) printf( "15");
- else
- {
- if(n == 104) printf( "104");
- else
- {
- if(n == 1025) printf("1025" );
- else printf("Error");
- }
- }
- }
- */
- /*
- #include <stdio.h>
- int n = 104;
- /////////////////////////////////////////////////////
- int main() //
- {
- if(n == 15) printf( "15");
- if(n == 104) printf( "104");
- if(n == 1025) printf("1025");
- // printf("Error");
- }
- */
- /*
- #include <stdio.h>
- int n = 104;
- /////////////////////////////////////////////////////
- int main() //
- {
- switch(n)
- {
- case 15: printf( "15");
- break;
- case 104: printf( "104");
- //break;
- case 1025: printf("1025");
- // break;
- default: printf("Error");
- }
- }
- */
- /*
- #include <stdio.h>
- //#include <string.h>
- void _strcpy(char *, const char *);
- /////////////////////////////////////////////////////
- int main() //
- {
- char sz[20] = "fresh",
- sz1[20] = "tomato_SONY";
- printf("%s\n", sz);
- _strcpy(&sz[0], "sz1");
- printf("%s\n", sz);
- }
- //////////////////////////////////////////////////////
- void _strcpy(char *psz1, const char *psz2) //
- {
- int i = 0;
- for(; psz2[i] != 0; i++)
- {
- psz1[i] = psz2[i];
- }
- psz1[i] = 0;
- }
- */
- /*
- #include <stdio.h>
- //#include <string.h>
- void _strcpy(char *, char *);
- /////////////////////////////////////////////////////
- int main() //
- {
- char sz[20] = "fresh",
- sz1[20] = "tomato_SONY";
- printf("%s\n", sz);
- _strcpy(&sz[0], sz1);
- printf("%s\n", sz);
- }
- //////////////////////////////////////////////////////
- void _strcpy(char *psz1, char *psz2) //
- {
- int i = 0;
- for(; psz2[i] != 0; i++)
- {
- psz1[i] = psz2[i];
- }
- psz1[i] = 0;
- }
- */
- /*
- #include <stdio.h>
- #include <string.h>
- /////////////////////////////////////////////////////
- int main() //
- {
- char sz[20] = "fresh",
- sz1[20] = "tomato_SONY";
- printf("%s\n", sz);
- int i = 0;
- for(; sz1[i] != 0; i++) sz[i] = sz1[i];
- sz[i] = 0;
- printf( "%s\n", sz);
- }
- */
- // printf("i = %d\n", i);
- /*
- #include <stdio.h>
- #include <string.h>
- /////////////////////////////////////////////////////
- int main() //
- {
- char sz[20] = "fresh",
- sz1[20] = "tomato_SONY";
- printf("%s\n", sz);
- for(int i = 0; i < 996; i++)
- {
- sz[i] = sz1[i];
- if(sz1[i] == 0) break;
- }
- printf("%s\n", sz);
- }
- */
- /*
- #define _CRT_SECURE_NO_WARNINGS
- #include <stdio.h>
- #include <string.h>
- /////////////////////////////////////////////////////
- int main() //
- {
- char sz[20] = "fresh",
- sz1[20] = "tomato";
- printf("%s\n", sz);
- for(int i = 0; i <= 6; i++)
- {
- sz[i] = sz1[i];
- }
- printf("%s\n", sz);
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement