Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- char* SUKA() {
- char BLYAD[] = "EBAL C";
- printf(BLYAD);
- printf("\n");
- return BLYAD;
- }
- int main()
- {
- char* res = SUKA();
- for (int i = 0; i<strlen(res);i++)
- printf("%c", res[i]);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement