remove const
This commit is contained in:
parent
2d7c2371e4
commit
98d5a1a3bc
8 changed files with 53 additions and 116 deletions
|
@ -1,5 +1,5 @@
|
|||
int printf(const char format[], ...);
|
||||
int scanf(const char format[], ...);
|
||||
int printf(char* format, ...);
|
||||
int scanf(char* format, ...);
|
||||
|
||||
void sort(int a[], int n) {
|
||||
for (int i = 0; i < n; i++) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue