Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- char sz1[99] = "SONY Pictures";
- ////////////////////////////////////////////////////////
- int main() //
- {
- int n = 0;
- L_01:
- printf("%c, ", sz1[n]);
- n++;
- if(n < 14) goto L_01;
- }
- void Nina()
- {
- return;
- }
- /*
- #include <stdio.h>
- char sz1[99] = "SONY Pictures";
- ////////////////////////////////////////////////////////
- int main() //
- {
- for(int n = 0; n < 15; n++)
- {
- printf("%c, ", sz1[n]);
- }
- }
- */
- /*
- #include <stdio.h>
- char sz1[99] = "SONY Pictures";
- ////////////////////////////////////////////////////////
- int main() //
- {
- int n = 0;
- while(n < 15)
- {
- printf("%c, ", sz1[n]);
- n++; //n += 1; //n = n + 1;
- }
- }
- */
- /*
- #include <stdio.h>
- char sz1[99] = "SONY";
- ////////////////////////////////////////////////////////
- int main() //
- {
- printf("%d, ", sz1[0]);
- printf("%d, ", sz1[1]);
- printf("%d, ", sz1[2]);
- printf("%d, ", sz1[3]);
- printf("%d, ", sz1[4]);
- }
- */
- /*
- #include <stdio.h>
- #include <locale.h>
- ////////////////////////////////////////////////////////
- int main() //
- {
- setlocale(0, "Rus");
- printf("Привет! \n");
- printf("LC_ALL = %d", LC_ALL);
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement