Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- char sz[12] = {56, 51, 32, 'Y'};
- ////////////////////////////////////////////////////
- int main() //
- {
- //sz[2] = 69;
- printf("sz = %s", sz);
- }
- /*
- #include <stdio.h>
- ////////////////////////////////////////////////////
- int main() //
- {
- char sz[12] = "SONY\n";
- int n = 8;
- n = n + 11;
- sz[5] = 'W';
- printf("sz = %s", sz);
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement