Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- char szArr[99] = "SONY";
- ////////////////////////////////////////////////////
- int main() //
- {
- printf("SONY \n");
- printf("%s kjhsdkajh \n", szArr);
- }
- /*
- #include <stdio.h>
- int n1 = 11; // jkhkljhkj
- int n2 = 7, // iujoiujoiu
- n3 ; // iouoiuoiuoiu
- void foo();
- ////////////////////////////////////////////////////
- int main() //
- {
- foo();
- printf("summa = %d", n3);
- }
- ////////////////////////////////////////////////////
- void foo() //
- {
- n3 = n1 + n2;
- }
- */
- /*
- #include <stdio.h>
- int n1; // jkhkljhkj
- int n2, // iujoiujoiu
- n3; // iouoiuoiuoiu
- void foo();
- ////////////////////////////////////////////////////
- int main() //
- {
- foo();
- printf("summa = %d", n3);
- }
- ////////////////////////////////////////////////////
- void foo() //
- {
- n1 = 10;
- n2 = 4;
- n3 = n1 + n2;
- }
- */
- /*
- #include <stdio.h>
- int n1; // jkhkljhkj
- int n2, // iujoiujoiu
- n3; // iouoiuoiuoiu
- ////////////////////////////////////////////////////
- int main() //
- {
- n1 = 10;
- n2 = 2;
- n3 = n1 + n2;
- printf("summa = %d", n3);
- }
- */
- /*
- #include <stdio.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- printf("SONY");
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement