Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <string.h>
  3.  
  4. using namespace std;
  5. int main() {
  6.  
  7. char buf1[] = "123123", buf2[] = "123123aszzzz";
  8. int buf3[] = {1, 2, 3, 4};
  9.  
  10. setZero(buf1, buf2, buf3);
  11.  
  12. return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement