memory nthat

This commit is contained in:
Ben
2019-04-26 18:39:44 +01:00
parent da858dfe76
commit ca72196bf4
7 changed files with 69 additions and 56 deletions

View File

@@ -1,5 +1,5 @@
#pragma once
void swap(int* a, int* b);
void reverse(char s[])
void itoa(int i, char[] s);
void reverse(char* s);
char* itoa(int i, char s[] = "");