6 lines
99 B
C
6 lines
99 B
C
#pragma once
|
|
|
|
void swap(int* a, int* b);
|
|
void reverse(char* s);
|
|
char* itoa(int i, char s[] = "");
|