Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- char sz[123] = "55";
- int n;
- //////////////////////////////////////////////////
- int main() //
- {
- sscanf(sz, "%d" , &n);
- printf("n = %d\n", n);
- return 0;
- }
- /*
- #include <stdio.h>
- char sz[123];
- //////////////////////////////////////////////////
- int main() //
- {
- sprintf(sz, "SONY %cihail ", 77);
- printf("%s", sz);
- return 0;
- }
- */
- /*
- // Альтернативный вариант простейшей программы. Exe-файл будет "весить" меньше в несколько десятков раз !!!
- #include <stdio.h>
- #include <locale.h> // здесь "живёт" setlocale(LC_ALL, "rus");
- char sz[123];
- //////////////////////////////////////////////////
- int main() //
- {
- setlocale(LC_ALL, "rus");
- sprintf(sz, "%x", 77);
- printf("%s", sz);
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement