Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3. char* SUKA() {
  4. char BLYAD[] = "EBAL C";
  5. printf(BLYAD);
  6. printf("\n");
  7. return BLYAD;
  8. }
  9.  
  10. int main()
  11. {
  12. char* res = SUKA();
  13. for (int i = 0; i<strlen(res);i++)
  14. printf("%c", res[i]);
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement