0 like 0 dislike
5.1k views

Write a function delete_e(int arr[],int size,int position) that delete an element from an array. Deleting an element does not affect the size of array. It is also checked whether deletion is possible or not, For example if array is containing five elements and you want to delete element at position six which is not possible.

寫一個delete_e(int arr[], int size, int position) 刪除一個陣列元素的函數。刪除後陣列大小不變。

The function returns 1 if success and 0 if fail (impossible value for position).

如果刪除可行的話 return 1,不可行return 0 (陣列大小五 刪除第六個元素)

The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.

輸入:陣列大小,元素,刪第幾個元素

#include <stdio.h>
int delete_e(int arr[],int size,int position)
{
   /*INSERT YOUR CODE HERE*/
   /*在這裡寫你的程式*/

   /*END OF YOUR CODE*/
}

int main(void)
{
   int array[100], position, c, n;

   scanf("%d", &n); //Enter number of elements in array
   for ( c = 0 ; c < n ; c++ )     //Enter array
      scanf("%d", &array[c]);

   scanf("%d", &position);         //Enter the location where you wish to delete element
   
   if (delete_e(array,n,position)) //If delete success then print the result
       for( c = 0 ; c < n - 1 ; c++ )            //Print the result array
             printf("%d ", array[c]);
   else printf("Impossible position!");             //If fail

   return 0;
}

Please complete this program by only insert your code between those tags:

   /*INSERT YOUR CODE HERE*/  
   /*END OF YOUR CODE*/

Example input:

3
4 7 8
1

Example output

7 8

Remember: You may correct the cases, but your code always be revised!

[Exercise] Coding (C) - asked in Chapter 9: Functions by (5.2k points)
ID: 35785 - Available when: 2017-12-07 18:00 - Due to: Unlimited

edited by | 5.1k views

47 Answers

0 like 0 dislike
Hidden content!
#include <stdio.h>
int delete_e(int arr[],int size,int position)
{
* ** * * **** ** YOUR CODE HERE*/
if ********** ** *** *** *** *** *
** * * ******* *** ***** 0;
}else
{
* **** * ** ** ** * * i,a,b,c;
* ***** * * *** times=size-position;
* * * *** ** *** *** ** *
   {
** *** * *** ** * * * * ** * * * * * * ** **
* ** ** * **** ****** *** * ** ** *** * * *
**** *** * * * * * *** ****** *** **

* * ***** ** *** * *** * * * * ***
   }

 return 1;}






* *** * * * ** OF YOUR CODE*/
}

int main(void)
{
** ** * * *** ** * * array[100], position, c, n;

* ****** ** * ** * * ** * ** * ** *** * * ** * ************ * * * *** ** *** * * * * * ** * ** **** ** *** * * * ** * * ****** * ** * ** ** ** * *** * * * * * * * ** * * *** ** ****** * *** * * * * ** * * ** * ** * * * * * * **** ***** *** ** *** *** * * * ***** ** * **** * ******* ** *** * * * * **** **** * * * * *** * ** *** * ** * * **** **** *** ** * * * ** ** * ** * ** * *** * * * &n); //Enter number of elements in array

**** * * ** * * ** ( c = 0 ; c < n ; c++ ) ** * * * *** **** * * array
* *** ** *** ** **** *** * ** * * * * *** *** &array[c]);



** *** * * * ***** * * * * * * * * ** ** ** ****** * * ** ** * * * **** **** ** * ** * ** * * **** ** * * *** ** ** * *** **** * * ****** * * ** ** *** * ******** * ***** ** ** * * * ******* ** * ** * * * * * * ** **** ** * ** * * * * * * ** * * * **** ** ** *** ** ** * * **** * * ** * ***** * ** * * * **** **** * ********* * ** *** ** *** **** * *** * * * ** * ** ** * * * **** * *** * **** &position); **** * *** * *** ** * * * * * ******* * * the location where you wish to delete element

   if (delete_e(array,n,position)) //If delete success then print the result
* ***** ** * ** ** * *** * ** * ** * c = 0 ; c < n - 1 ; c++ ) ** *** * *** ** ** * ** * * * * *** * ** * ** * ** the result array
*** **** * * ** *** * * ** *** * ** **** *** *** * *** ** * ***** ** * ", array[c]);
* * * *** *** *** *** printf("Impossible position!"); * * * **** *** ** **** ** *** ** ******* ** * * * * ** *** fail

** * ***** ***** ** 0;
}
answered by (-336 points)
0 0
Case 0: Wrong output
Case 1: Correct output
Case 2: Wrong output
Case 3: Wrong output
0 like 0 dislike
Hidden content!
#include ****** * *** *
int ** * arr[],int size,int position)
{
* * *** * * i;
*** **** * * **** ** * * * *** **
** * **** * ** * * *** * ** ** * * * *** **
*** *** ** *** *** ****
* **** * **** ** ** * * ** arr[i];
}

int ** *
{
* ** ** ** **** * * ***** position, c, n;

*** ***** * *** * * **** **** ** * //Enter number of elements in array
* * * **** ** ** ** ( c = 0 ; c < n ; c++ ) * ** * * *** *** **** * array
**** ** ** * * * * * * * * * * * * * * ********* **

* * *** *** ** * * * ** **** *** * *** * *** * *** *** * * * *** ***** * **** * *** ** the location where you wish to delete element

* * ** *** ** **** ** ** * **** * //If delete success then print the result
******** ** **** * ** * * * **** * c = 0 ; c < n - 1 ; c++ ) *** * * * ******** * * * ** * ** * * * * * * the result array
** **** * ** * **** * * ** * ** * * * ** * **** * *** * * * * *** * ***** * * * array[c]);
* * * **** ** *** * ** * ****** * ** * * * ** * ** **** ** ** *** *** * ** *** ** ***** * * *** fail

* ** ** * ** * ** 0;
}
answered by (-32 points)
0 0
Case 0: Correct output
Case 1: Wrong output
Case 2: Correct output
Case 3: Correct output
0 0
Case 0: Correct output
Case 1: Wrong output
Case 2: Correct output
Case 3: Wrong output
0 0
Case 0: Correct output
Case 1: Wrong output
Case 2: Correct output
Case 3: Correct output
0 like 0 dislike
Hidden content!
#include ***** ** ** *
int delete_e(int arr[],int size,int position)
{
**** ****** * ** *** * c,d;

** * **** * ** * ** * ** * *** **
*** ** * ** * * * ** ******** * * * ** *
* **** ** * * * * ** * ** *** * ***** *** * **** * * * ***** * ** ****
* * ***** ** * ***** * ** ** * ** *** * ** * * ** * ***** * * * * * * * * *
***** **** ***** **** *** *** *** * * *** ** **

* ** *** ** * *** * * * * ****** return 0;
*** **** *** * * ** *** return 1;

}

int main(void)
{
* ** *** ** ** array[100], position, c, n;

* * * * * * ** *** * **** * * ***** **** &n); //Enter number of elements in array
** * ** * * * * ( c = 0 ; c < n ; c++ ) ** * ** * ** ***** *** array
* * ** * ** * * * **** ** * * ** ** ** * * ****** *

*** **** * * *** ***** ** * ****** *** * ** ** *** * ** ***** ** ** * * ** * * * * * the location where you wish to delete element

* **** *** ** ******* * * * * *** * //If delete success then print the result
* * * ** ** * *** ** ** *** c = 0 ; c < n - 1 ; c++ ) *** *** * ** ****** ** ** ** **** * *** * ** * * * *** ** * *** ** the result array
* * * * ** ** * ***** * ***** * **** *** *** * ** *** ** * * * *** * *** ** * ", array[c]);
* ****** ** * ** * * * * *** * * * * * ** * * * * * ** ** * * * **** * ***** *** ******* ***** ** ** * *** * fail

*** ** * * *** 0;
}
answered by (-301 points)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
0 like 0 dislike
Hidden content!
* a * ** ** * * * * * * that *** an ** * * from an *** * * an * * does not the size of *** It is also ** * is * *** or not, For * if * * is ** * five * * and you want to ** *** at *** six ** ** is not *

* *** ** * * int int * * * * * **** * * * **** ****** * *

The * * * *** 1 if ** ** and 0 if fail *** * * for **

*** * *** * ** * ** ** ** 0 ** *** * **** *

The * * * * is the * of * * in ** (3); The * *** * The end with * of the ** need to be *

** * * * ** * * * * *

** * *** * * ** *
int *** * ** * * ** ****
{
* *** *** * ** *** * YOUR CODE * *
* ** ******** *** * **** * * ***

* ** * * **** * OF YOUR
}

int * * **
{
** ** *** ****** ** c, n;

* * * ** *** ** * ** ** * * ** * ** **** of * * in ***
* **** ** *** * ( c = 0 ; c ***** n ; c++ ) * *** * ** * * * *** ***
* ******** * ******* *** **** ***** **** **** * * ** * * *** ** * *

* * *** ** ** * * ** ** ** * ** * * ** * * ** *** ***** **** ** ** **** * * * the * you wish to *** * **
*** *** ** ** * * ** **
* *** * ** *** * **** //If ** * **** then ** * the *
*** * *** * * ********** * *** * * * ** c = 0 ; c * * n - 1 ; c++ ) * ****** * **** * * ** * ** * * **** * * ** * * * ****** * ** the * * *
* *** * * * * ** ** ************* ** ***** ** * ** ** * * * * *** * * ** **** ***** * ** * *
****** **** ** ** *** * ****** * *** *** * * ** ** * ** ** ***** ********** * * * ** ** ** * * **** *** ** * * *** ** fail

*** *** * * * * ** 0;
}
* * ** this * by only * * your code * ** * **

** ** *** * * * ** YOUR CODE ** * ** *
** * * * **** OF YOUR * *

**** **

3
4 7 8
1
** * *

7 8
answered by (-336 points)
0 0
prog.c:1:1: error: unknown type name 'Write'
 Write a function delete_e(int arr[],int size,int position) that delete an element from an array. Deleting an element does not affect the size of array. It is also checked whether deletion is possible or not, For example if array is containing five elements and you want to delete element at position six which is not possible.
 ^~~~~
prog.c:1:9: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'function'
 Write a function delete_e(int arr[],int size,int position) that delete an element from an array. Deleting an element does not affect the size of array. It is also checked whether deletion is possible or not, For example if array is containing five elements and you want to delete element at position six which is not possible.
         ^~~~~~~~
prog.c:1:9: error: unknown type name 'function'
prog.c:3:1: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
 ^
prog.c:3:2: error: stray '\257' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
  ^
prog.c:3:3: error: stray '\253' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
   ^
prog.c:3:4: error: stray '\344' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
    ^
prog.c:3:5: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
     ^
prog.c:3:6: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
      ^
prog.c:3:7: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
       ^
prog.c:3:8: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
        ^
prog.c:3:9: error: stray '\213' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
         ^
prog.c:3:54: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                      ^
prog.c:3:55: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                       ^
prog.c:3:56: error: stray '\252' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                        ^
prog.c:3:57: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                         ^
prog.c:3:58: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                          ^
prog.c:3:59: error: stray '\244' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                           ^
prog.c:3:60: error: stray '\344' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                            ^
prog.c:3:61: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                             ^
prog.c:3:62: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                              ^
prog.c:3:63: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                               ^
prog.c:3:64: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                ^
prog.c:3:65: error: stray '\213' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                 ^
prog.c:3:66: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                  ^
prog.c:3:67: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                   ^
prog.c:3:68: error: stray '\243' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                    ^
prog.c:3:69: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                     ^
prog.c:3:70: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                      ^
prog.c:3:71: error: stray '\227' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                       ^
prog.c:3:72: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                        ^
prog.c:3:73: error: stray '\205' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                         ^
prog.c:3:74: error: stray '\203' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                          ^
prog.c:3:75: error: stray '\347' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                           ^
prog.c:3:76: error: stray '\264' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                            ^
prog.c:3:77: error: stray '\240' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                             ^
prog.c:3:78: error: stray '\347' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                              ^
prog.c:3:79: error: stray '\232' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                               ^
prog.c:3:80: error: stray '\204' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                ^
prog.c:3:81: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                 ^
prog.c:3:82: error: stray '\207' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                  ^
prog.c:3:83: error: stray '\275' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                   ^
prog.c:3:84: error: stray '\346' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                    ^
prog.c:3:85: error: stray '\225' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                     ^
prog.c:3:86: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                      ^
prog.c:3:87: error: stray '\343' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                       ^
prog.c:3:88: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                        ^
prog.c:3:89: error: stray '\202' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                         ^
prog.c:3:90: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                          ^
prog.c:3:91: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                           ^
prog.c:3:92: error: stray '\252' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                            ^
prog.c:3:93: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                             ^
prog.c:3:94: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                              ^
prog.c:3:95: error: stray '\244' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                               ^
prog.c:3:96: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                ^
prog.c:3:97: error: stray '\276' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                 ^
prog.c:3:98: error: stray '\214' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                  ^
prog.c:3:99: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                   ^
prog.c:3:100: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                    ^
prog.c:3:101: error: stray '\243' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                     ^
prog.c:3:102: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                      ^
prog.c:3:103: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                       ^
prog.c:3:104: error: stray '\227' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                        ^
prog.c:3:105: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                         ^
prog.c:3:106: error: stray '\244' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                          ^
prog.c:3:107: error: stray '\247' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                           ^
prog.c:3:108: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                            ^
prog.c:3:109: error: stray '\260' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                             ^
prog.c:3:110: error: stray '\217' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                              ^
prog.c:3:111: error: stray '\344' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                               ^
prog.c:3:112: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                ^
prog.c:3:113: error: stray '\215' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                 ^
prog.c:3:114: error: stray '\350' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                  ^
prog.c:3:115: error: stray '\256' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                   ^
prog.c:3:116: error: stray '\212' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                    ^
prog.c:3:117: error: stray '\343' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                     ^
prog.c:3:118: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                      ^
prog.c:3:119: error: stray '\202' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                       ^
prog.c:7:1: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
 ^
prog.c:7:2: error: stray '\246' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
  ^
prog.c:7:3: error: stray '\202' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
   ^
prog.c:7:4: error: stray '\346' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
    ^
prog.c:7:5: error: stray '\236' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
     ^
prog.c:7:6: error: stray '\234' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
      ^
prog.c:7:7: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
       ^
prog.c:7:8: error: stray '\210' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
        ^
prog.c:7:9: error: stray '\252' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
         ^
prog.c:7:10: error: stray '\351' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
          ^
prog.c:7:11: error: stray '\231' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
           ^
prog.c:7:12: error: stray '\244' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
            ^
prog.c:7:13: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
             ^
prog.c:7:14: error: stray '\217' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
              ^
prog.c:7:15: error: stray '\257' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
               ^
prog.c:7:16: error: stray '\350' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                ^
prog.c:7:17: error: stray '\241' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                 ^
prog.c:7:18: error: stray '\214' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                  ^
prog.c:7:19: error: stray '\347' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                   ^
prog.c:7:20: error: stray '\232' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                    ^
prog.c:7:21: error: stray '\204' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                     ^
prog.c:7:22: error: stray '\350' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                      ^
prog.c:7:23: error: stray '\251' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                       ^
prog.c:7:24: error: stray '\261' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                        ^
prog.c:7:34: error: stray '\357' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                  ^
prog.c:7:35: error: stray '\274' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                   ^
prog.c:7:36: error: stray '\214' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                    ^
prog.c:7:37: error: stray '\344' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                     ^
prog.c:7:38: error: stray '\270' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                      ^
prog.c:7:39: error: stray '\215' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                       ^
prog.c:7:40: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                        ^
prog.c:7:41: error: stray '\217' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                         ^
prog.c:7:42: error: stray '\257' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                          ^
prog.c:7:43: error: stray '\350' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                           ^
prog.c:7:44: error: stray '\241' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                            ^
prog.c:7:45: error: stray '\214' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                             ^
prog.c:7:56: error: stray '\351' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                        ^
prog.c:7:57: error: stray '\231' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                         ^
prog.c:7:58: error: stray '\243' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                          ^
prog.c:7:59: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                           ^
prog.c:7:60: error: stray '\210' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                            ^
prog.c:7:61: error: stray '\227' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                             ^
prog.c:7:62: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                              ^
prog.c:7:63: error: stray '\244' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                               ^
prog.c:7:64: error: stray '\247' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                ^
prog.c:7:65: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                 ^
prog.c:7:66: error: stray '\260' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                  ^
prog.c:7:67: error: stray '\217' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                   ^
prog.c:7:68: error: stray '\344' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                    ^
prog.c:7:69: error: stray '\272' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                     ^
prog.c:7:70: error: stray '\224' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                      ^
prog.c:7:72: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                        ^
prog.c:7:73: error: stray '\210' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                         ^
prog.c:7:74: error: stray '\252' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                          ^
prog.c:7:75: error: stray '\351' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                           ^
prog.c:7:76: error: stray '\231' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                            ^
prog.c:7:77: error: stray '\244' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                             ^
prog.c:7:78: error: stray '\347' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                              ^
prog.c:7:79: error: stray '\254' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                               ^
prog.c:7:80: error: stray '\254' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                ^
prog.c:7:81: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                 ^
prog.c:7:82: error: stray '\205' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                  ^
prog.c:7:83: error: stray '\255' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                   ^
prog.c:7:84: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                    ^
prog.c:7:85: error: stray '\200' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                     ^
prog.c:7:86: error: stray '\213' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                      ^
prog.c:7:87: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                       ^
prog.c:7:88: error: stray '\205' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                        ^
prog.c:7:89: error: stray '\203' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                         ^
prog.c:7:90: error: stray '\347' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                          ^
prog.c:7:91: error: stray '\264' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                           ^
prog.c:7:92: error: stray '\240' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                            ^
prog.c:9:57: error: unknown type name 'The'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                         ^~~
prog.c:9:67: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'values'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                                   ^~~~~~
prog.c:9:67: error: unknown type name 'values'
prog.c:9:82: error: unknown type name 'The'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                                                  ^~~
prog.c:9:92: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'end'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                                                            ^~~
prog.c:9:92: error: unknown type name 'end'
prog.c:11:1: error: stray '\350' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
 ^
prog.c:11:2: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
  ^
prog.c:11:3: error: stray '\270' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
   ^
prog.c:11:4: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
    ^
prog.c:11:5: error: stray '\205' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
     ^
prog.c:11:6: error: stray '\245' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
      ^
prog.c:11:7: error: stray '\357' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
       ^
prog.c:11:8: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
        ^
prog.c:11:9: error: stray '\232' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
         ^
prog.c:11:10: error: stray '\351' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
          ^
prog.c:11:11: error: stray '\231' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
           ^
prog.c:11:12: error: stray '\243' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
            ^
prog.c:11:13: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
             ^
prog.c:11:14: error: stray '\210' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
              ^
prog.c:11:15: error: stray '\227' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
               ^
prog.c:11:16: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                ^
prog.c:11:17: error: stray '\244' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                 ^
prog.c:11:18: error: stray '\247' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                  ^
prog.c:11:19: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                   ^
prog.c:11:20: error: stray '\260' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                    ^
prog.c:11:21: error: stray '\217' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                     ^
prog.c:11:22: error: stray '\357' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                      ^
prog.c:11:23: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                       ^
prog.c:11:24: error: stray '\214' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                        ^
prog.c:11:25: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                         ^
prog.c:11:26: error: stray '\205' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                          ^
prog.c:11:27: error: stray '\203' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                           ^
prog.c:11:28: error: stray '\347' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                            ^
prog.c:11:29: error: stray '\264' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                             ^
prog.c:11:30: error: stray '\240' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                              ^
prog.c:11:31: error: stray '\357' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                               ^
prog.c:11:32: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                ^
prog.c:11:33: error: stray '\214' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                 ^
prog.c:11:34: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                  ^
prog.c:11:35: error: stray '\210' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                   ^
prog.c:11:36: error: stray '\252' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                    ^
prog.c:11:37: error: stray '\347' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                     ^
prog.c:11:38: error: stray '\254' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                      ^
prog.c:11:39: error: stray '\254' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                       ^
prog.c:11:40: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                        ^
prog.c:11:41: error: stray '\271' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                         ^
prog.c:11:42: error: stray '\276' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                          ^
prog.c:11:43: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                           ^
prog.c:11:44: error: stray '\200' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                            ^
prog.c:11:45: error: stray '\213' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                             ^
prog.c:11:46: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                              ^
prog.c:11:47: error: stray '\205' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                               ^
prog.c:11:48: error: stray '\203' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                ^
prog.c:11:49: error: stray '\347' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                 ^
prog.c:11:50: error: stray '\264' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                  ^
prog.c:11:51: error: stray '\240' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                   ^
In file included from /usr/include/stdio.h:74:0,
                 from prog.c:13:
/usr/include/libio.h:302:3: error: unknown type name 'size_t'
   size_t __pad5;
   ^~~~~~
/usr/include/libio.h:305:67: error: 'size_t' undeclared here (not in a function)
   char _unused2[15 * sizeof (int) - 4 * sizeof (void *) - sizeof (size_t)];
                                                                   ^~~~~~
/usr/include/libio.h:333:62: error: expected declaration specifiers or '...' before 'size_t'
 typedef __ssize_t __io_read_fn (void *__cookie, char *__buf, size_t __nbytes);
                                                              ^~~~~~
/usr/include/libio.h:342:6: error: expected declaration specifiers or '...' before 'size_t'
      size_t __n);
      ^~~~~~
/usr/include/libio.h:464:19: error: expected '=', ',', ';', 'asm' or '__attribute__' before '_IO_sgetn'
 extern _IO_size_t _IO_sgetn (_IO_FILE *, void *, _IO_size_t);
                   ^~~~~~~~~
In file included from prog.c:13:0:
/usr/include/stdio.h:339:20: error: expected declaration specifiers or '...' before 'size_t'
       int __modes, size_t __n) __THROW;
                    ^~~~~~
/usr/include/stdio.h:388:44: error: expected declaration specifiers or '...' before 'size_t'
 extern int snprintf (char *__restrict __s, size_t __maxlen,
                                            ^~~~~~
/usr/include/stdio.h:392:45: error: expected declaration specifiers or '...' before 'size_t'
 extern int vsnprintf (char *__restrict __s, size_t __maxlen,
                                             ^~~~~~
/usr/include/stdio.h:711:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'fread'
 extern size_t fread (void *__restrict __ptr, size_t __size,
               ^~~~~
/usr/include/stdio.h:717:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'fwrite'
 extern size_t fwrite (const void *__restrict __ptr, size_t __size,
               ^~~~~~
prog.c:39:1: error: unknown type name 'Please'
 Please complete this program by only insert your code between those tags:
 ^~~~~~
prog.c:39:17: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'this'
 Please complete this program by only insert your code between those tags:
                 ^~~~
prog.c:39:17: error: unknown type name 'this'
0 like 0 dislike
Hidden content!
* a **** * ** * * * * * * * * that ** an from an ** * an * does not * * the size of * * It is also ** * *** * ** *** is * or not, For ** * if is ** ** five * * and you want to *** * * * at ** ** six * * is not **

* * * * * int ** int ** * ** * * ***** ******* * **

The * ** * * 1 if * and 0 if fail ** * *** for * ****

* **** * *** * **** ** * ***** * 0 **** ** * **** ** *

The * is the of * ** * in * (3); The **** *** ****** The * end with ** of the ** need to be * **

* * ** **** ** * ** **** *

**** * **** **** *
int ** * * *** ** *** * * *
{
** * * * ** * * * * YOUR CODE * *
**** ** * *** * ****** * * ** * *

*** * * **** *** * OF YOUR ** **
}

int *
{
** * * * * * ** ** c, n;

* ** * * ** ** ** * * ** * * ** * ** *** of * * * in *
** * ** * * * ** * * ( c = 0 ; c * n ; c++ ) *** * * **** *** ** ** ** * * *
* * * ** * ** * * * ** ** * ** *** ** * ******* * *** **

** *** *** * ******** **** * ** * * * ** * ** * **** * * **** * * ** * * ** **** ** the ** ** you wish to * * * *
** * * * ** ***
* *** ********* ** **** ** ** * * * //If * * ** then * the ***
* ** * * * *** * **** * **** **** ***** * c = 0 ; c * n - 1 ; c++ ) * * *** ** **** * **** ** * *** ** ** ** * * the * ** *
* * ** ***** ***** ******* * ** * * * * * *** * * ***** * ** ** * **** ** ** **
** * ** * ** ** * * * * * ** * ** * * * * ** * * ******* ** **** * * ** * * *** *** ** * * ****** * * ** fail

* *** ** * ** *** 0;
}
** * this * ** by only *** your code * *** **

* ****** *** ** ** * * YOUR CODE *
****** ***** * **** * OF YOUR *

* **

3
4 7 8
1
* ** *

7 8
answered by (-336 points)
0 0
prog.c:1:1: error: unknown type name 'Write'
 Write a function delete_e(int arr[],int size,int position) that delete an element from an array. Deleting an element does not affect the size of array. It is also checked whether deletion is possible or not, For example if array is containing five elements and you want to delete element at position six which is not possible.
 ^~~~~
prog.c:1:9: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'function'
 Write a function delete_e(int arr[],int size,int position) that delete an element from an array. Deleting an element does not affect the size of array. It is also checked whether deletion is possible or not, For example if array is containing five elements and you want to delete element at position six which is not possible.
         ^~~~~~~~
prog.c:1:9: error: unknown type name 'function'
prog.c:3:1: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
 ^
prog.c:3:2: error: stray '\257' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
  ^
prog.c:3:3: error: stray '\253' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
   ^
prog.c:3:4: error: stray '\344' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
    ^
prog.c:3:5: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
     ^
prog.c:3:6: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
      ^
prog.c:3:7: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
       ^
prog.c:3:8: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
        ^
prog.c:3:9: error: stray '\213' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
         ^
prog.c:3:54: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                      ^
prog.c:3:55: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                       ^
prog.c:3:56: error: stray '\252' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                        ^
prog.c:3:57: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                         ^
prog.c:3:58: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                          ^
prog.c:3:59: error: stray '\244' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                           ^
prog.c:3:60: error: stray '\344' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                            ^
prog.c:3:61: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                             ^
prog.c:3:62: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                              ^
prog.c:3:63: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                               ^
prog.c:3:64: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                ^
prog.c:3:65: error: stray '\213' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                 ^
prog.c:3:66: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                  ^
prog.c:3:67: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                   ^
prog.c:3:68: error: stray '\243' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                    ^
prog.c:3:69: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                     ^
prog.c:3:70: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                      ^
prog.c:3:71: error: stray '\227' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                       ^
prog.c:3:72: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                        ^
prog.c:3:73: error: stray '\205' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                         ^
prog.c:3:74: error: stray '\203' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                          ^
prog.c:3:75: error: stray '\347' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                           ^
prog.c:3:76: error: stray '\264' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                            ^
prog.c:3:77: error: stray '\240' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                             ^
prog.c:3:78: error: stray '\347' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                              ^
prog.c:3:79: error: stray '\232' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                               ^
prog.c:3:80: error: stray '\204' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                ^
prog.c:3:81: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                 ^
prog.c:3:82: error: stray '\207' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                  ^
prog.c:3:83: error: stray '\275' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                   ^
prog.c:3:84: error: stray '\346' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                    ^
prog.c:3:85: error: stray '\225' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                     ^
prog.c:3:86: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                      ^
prog.c:3:87: error: stray '\343' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                       ^
prog.c:3:88: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                        ^
prog.c:3:89: error: stray '\202' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                         ^
prog.c:3:90: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                          ^
prog.c:3:91: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                           ^
prog.c:3:92: error: stray '\252' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                            ^
prog.c:3:93: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                             ^
prog.c:3:94: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                              ^
prog.c:3:95: error: stray '\244' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                               ^
prog.c:3:96: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                ^
prog.c:3:97: error: stray '\276' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                 ^
prog.c:3:98: error: stray '\214' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                  ^
prog.c:3:99: error: stray '\351' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                   ^
prog.c:3:100: error: stray '\231' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                    ^
prog.c:3:101: error: stray '\243' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                     ^
prog.c:3:102: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                      ^
prog.c:3:103: error: stray '\210' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                       ^
prog.c:3:104: error: stray '\227' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                        ^
prog.c:3:105: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                         ^
prog.c:3:106: error: stray '\244' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                          ^
prog.c:3:107: error: stray '\247' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                           ^
prog.c:3:108: error: stray '\345' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                            ^
prog.c:3:109: error: stray '\260' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                             ^
prog.c:3:110: error: stray '\217' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                              ^
prog.c:3:111: error: stray '\344' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                               ^
prog.c:3:112: error: stray '\270' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                ^
prog.c:3:113: error: stray '\215' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                 ^
prog.c:3:114: error: stray '\350' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                  ^
prog.c:3:115: error: stray '\256' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                   ^
prog.c:3:116: error: stray '\212' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                    ^
prog.c:3:117: error: stray '\343' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                     ^
prog.c:3:118: error: stray '\200' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                      ^
prog.c:3:119: error: stray '\202' in program
 \xe5\xaf\xab\xe4\xb8\x80\xe5\x80\x8bdelete_e(int arr[], int size, int position) \xe5\x88\xaa\xe9\x99\xa4\xe4\xb8\x80\xe5\x80\x8b\xe9\x99\xa3\xe5\x88\x97\xe5\x85\x83\xe7\xb4\xa0\xe7\x9a\x84\xe5\x87\xbd\xe6\x95\xb8\xe3\x80\x82\xe5\x88\xaa\xe9\x99\xa4\xe5\xbe\x8c\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xb8\x8d\xe8\xae\x8a\xe3\x80\x82
                                                                                                                       ^
prog.c:7:1: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
 ^
prog.c:7:2: error: stray '\246' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
  ^
prog.c:7:3: error: stray '\202' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
   ^
prog.c:7:4: error: stray '\346' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
    ^
prog.c:7:5: error: stray '\236' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
     ^
prog.c:7:6: error: stray '\234' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
      ^
prog.c:7:7: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
       ^
prog.c:7:8: error: stray '\210' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
        ^
prog.c:7:9: error: stray '\252' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
         ^
prog.c:7:10: error: stray '\351' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
          ^
prog.c:7:11: error: stray '\231' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
           ^
prog.c:7:12: error: stray '\244' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
            ^
prog.c:7:13: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
             ^
prog.c:7:14: error: stray '\217' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
              ^
prog.c:7:15: error: stray '\257' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
               ^
prog.c:7:16: error: stray '\350' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                ^
prog.c:7:17: error: stray '\241' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                 ^
prog.c:7:18: error: stray '\214' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                  ^
prog.c:7:19: error: stray '\347' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                   ^
prog.c:7:20: error: stray '\232' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                    ^
prog.c:7:21: error: stray '\204' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                     ^
prog.c:7:22: error: stray '\350' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                      ^
prog.c:7:23: error: stray '\251' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                       ^
prog.c:7:24: error: stray '\261' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                        ^
prog.c:7:34: error: stray '\357' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                  ^
prog.c:7:35: error: stray '\274' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                   ^
prog.c:7:36: error: stray '\214' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                    ^
prog.c:7:37: error: stray '\344' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                     ^
prog.c:7:38: error: stray '\270' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                      ^
prog.c:7:39: error: stray '\215' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                       ^
prog.c:7:40: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                        ^
prog.c:7:41: error: stray '\217' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                         ^
prog.c:7:42: error: stray '\257' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                          ^
prog.c:7:43: error: stray '\350' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                           ^
prog.c:7:44: error: stray '\241' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                            ^
prog.c:7:45: error: stray '\214' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                             ^
prog.c:7:56: error: stray '\351' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                        ^
prog.c:7:57: error: stray '\231' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                         ^
prog.c:7:58: error: stray '\243' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                          ^
prog.c:7:59: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                           ^
prog.c:7:60: error: stray '\210' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                            ^
prog.c:7:61: error: stray '\227' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                             ^
prog.c:7:62: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                              ^
prog.c:7:63: error: stray '\244' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                               ^
prog.c:7:64: error: stray '\247' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                ^
prog.c:7:65: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                 ^
prog.c:7:66: error: stray '\260' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                  ^
prog.c:7:67: error: stray '\217' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                   ^
prog.c:7:68: error: stray '\344' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                    ^
prog.c:7:69: error: stray '\272' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                     ^
prog.c:7:70: error: stray '\224' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                      ^
prog.c:7:72: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                        ^
prog.c:7:73: error: stray '\210' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                         ^
prog.c:7:74: error: stray '\252' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                          ^
prog.c:7:75: error: stray '\351' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                           ^
prog.c:7:76: error: stray '\231' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                            ^
prog.c:7:77: error: stray '\244' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                             ^
prog.c:7:78: error: stray '\347' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                              ^
prog.c:7:79: error: stray '\254' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                               ^
prog.c:7:80: error: stray '\254' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                ^
prog.c:7:81: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                 ^
prog.c:7:82: error: stray '\205' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                  ^
prog.c:7:83: error: stray '\255' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                   ^
prog.c:7:84: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                    ^
prog.c:7:85: error: stray '\200' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                     ^
prog.c:7:86: error: stray '\213' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                      ^
prog.c:7:87: error: stray '\345' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                       ^
prog.c:7:88: error: stray '\205' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                        ^
prog.c:7:89: error: stray '\203' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                         ^
prog.c:7:90: error: stray '\347' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                          ^
prog.c:7:91: error: stray '\264' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                           ^
prog.c:7:92: error: stray '\240' in program
 \xe5\xa6\x82\xe6\x9e\x9c\xe5\x88\xaa\xe9\x99\xa4\xe5\x8f\xaf\xe8\xa1\x8c\xe7\x9a\x84\xe8\xa9\xb1 return 1\xef\xbc\x8c\xe4\xb8\x8d\xe5\x8f\xaf\xe8\xa1\x8creturn 0 (\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xe4\xba\x94 \xe5\x88\xaa\xe9\x99\xa4\xe7\xac\xac\xe5\x85\xad\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0)
                                                                                            ^
prog.c:9:57: error: unknown type name 'The'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                         ^~~
prog.c:9:67: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'values'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                                   ^~~~~~
prog.c:9:67: error: unknown type name 'values'
prog.c:9:82: error: unknown type name 'The'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                                                  ^~~
prog.c:9:92: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'end'
 The first input is the number of elements in array (3); The array values follow; The input end with position of the element need to be deleted.
                                                                                            ^~~
prog.c:9:92: error: unknown type name 'end'
prog.c:11:1: error: stray '\350' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
 ^
prog.c:11:2: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
  ^
prog.c:11:3: error: stray '\270' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
   ^
prog.c:11:4: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
    ^
prog.c:11:5: error: stray '\205' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
     ^
prog.c:11:6: error: stray '\245' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
      ^
prog.c:11:7: error: stray '\357' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
       ^
prog.c:11:8: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
        ^
prog.c:11:9: error: stray '\232' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
         ^
prog.c:11:10: error: stray '\351' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
          ^
prog.c:11:11: error: stray '\231' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
           ^
prog.c:11:12: error: stray '\243' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
            ^
prog.c:11:13: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
             ^
prog.c:11:14: error: stray '\210' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
              ^
prog.c:11:15: error: stray '\227' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
               ^
prog.c:11:16: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                ^
prog.c:11:17: error: stray '\244' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                 ^
prog.c:11:18: error: stray '\247' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                  ^
prog.c:11:19: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                   ^
prog.c:11:20: error: stray '\260' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                    ^
prog.c:11:21: error: stray '\217' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                     ^
prog.c:11:22: error: stray '\357' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                      ^
prog.c:11:23: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                       ^
prog.c:11:24: error: stray '\214' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                        ^
prog.c:11:25: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                         ^
prog.c:11:26: error: stray '\205' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                          ^
prog.c:11:27: error: stray '\203' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                           ^
prog.c:11:28: error: stray '\347' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                            ^
prog.c:11:29: error: stray '\264' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                             ^
prog.c:11:30: error: stray '\240' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                              ^
prog.c:11:31: error: stray '\357' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                               ^
prog.c:11:32: error: stray '\274' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                ^
prog.c:11:33: error: stray '\214' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                 ^
prog.c:11:34: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                  ^
prog.c:11:35: error: stray '\210' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                   ^
prog.c:11:36: error: stray '\252' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                    ^
prog.c:11:37: error: stray '\347' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                     ^
prog.c:11:38: error: stray '\254' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                      ^
prog.c:11:39: error: stray '\254' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                       ^
prog.c:11:40: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                        ^
prog.c:11:41: error: stray '\271' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                         ^
prog.c:11:42: error: stray '\276' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                          ^
prog.c:11:43: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                           ^
prog.c:11:44: error: stray '\200' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                            ^
prog.c:11:45: error: stray '\213' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                             ^
prog.c:11:46: error: stray '\345' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                              ^
prog.c:11:47: error: stray '\205' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                               ^
prog.c:11:48: error: stray '\203' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                ^
prog.c:11:49: error: stray '\347' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                 ^
prog.c:11:50: error: stray '\264' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                  ^
prog.c:11:51: error: stray '\240' in program
 \xe8\xbc\xb8\xe5\x85\xa5\xef\xbc\x9a\xe9\x99\xa3\xe5\x88\x97\xe5\xa4\xa7\xe5\xb0\x8f\xef\xbc\x8c\xe5\x85\x83\xe7\xb4\xa0\xef\xbc\x8c\xe5\x88\xaa\xe7\xac\xac\xe5\xb9\xbe\xe5\x80\x8b\xe5\x85\x83\xe7\xb4\xa0
                                                   ^
In file included from /usr/include/stdio.h:74:0,
                 from prog.c:13:
/usr/include/libio.h:302:3: error: unknown type name 'size_t'
   size_t __pad5;
   ^~~~~~
/usr/include/libio.h:305:67: error: 'size_t' undeclared here (not in a function)
   char _unused2[15 * sizeof (int) - 4 * sizeof (void *) - sizeof (size_t)];
                                                                   ^~~~~~
/usr/include/libio.h:333:62: error: expected declaration specifiers or '...' before 'size_t'
 typedef __ssize_t __io_read_fn (void *__cookie, char *__buf, size_t __nbytes);
                                                              ^~~~~~
/usr/include/libio.h:342:6: error: expected declaration specifiers or '...' before 'size_t'
      size_t __n);
      ^~~~~~
/usr/include/libio.h:464:19: error: expected '=', ',', ';', 'asm' or '__attribute__' before '_IO_sgetn'
 extern _IO_size_t _IO_sgetn (_IO_FILE *, void *, _IO_size_t);
                   ^~~~~~~~~
In file included from prog.c:13:0:
/usr/include/stdio.h:339:20: error: expected declaration specifiers or '...' before 'size_t'
       int __modes, size_t __n) __THROW;
                    ^~~~~~
/usr/include/stdio.h:388:44: error: expected declaration specifiers or '...' before 'size_t'
 extern int snprintf (char *__restrict __s, size_t __maxlen,
                                            ^~~~~~
/usr/include/stdio.h:392:45: error: expected declaration specifiers or '...' before 'size_t'
 extern int vsnprintf (char *__restrict __s, size_t __maxlen,
                                             ^~~~~~
/usr/include/stdio.h:711:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'fread'
 extern size_t fread (void *__restrict __ptr, size_t __size,
               ^~~~~
/usr/include/stdio.h:717:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'fwrite'
 extern size_t fwrite (const void *__restrict __ptr, size_t __size,
               ^~~~~~
prog.c:39:1: error: unknown type name 'Please'
 Please complete this program by only insert your code between those tags:
 ^~~~~~
prog.c:39:17: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'this'
 Please complete this program by only insert your code between those tags:
                 ^~~~
prog.c:39:17: error: unknown type name 'this'
0 like 0 dislike
Hidden content!
#include ** * * ***
int delete_e(int arr[],int size,int position)
{
* ** **** **** ** * *** i;
** ** ** ***** * * * ** ** * * * *
* ** ** * ** * ** *
***** *** * * * * * * *** *** * ** *** **** ** * ** *
* * ** ****** * *
** * ** * **** * ** ****** * ** ** * * ** * * *
** ** *** * * *** ***** *** *** ** ***** 0;
* * **** * * *** * ** * **** ***
*** ** * **** * ** * * ** * *** *** * * ** 1;
}

int main(void)
{
** * * * ** **** ** array[100], position, c, n;

* *** ** ******* * ** *** * &n); //Enter number of elements in array
** * * * * ***** ( c = 0 ; c < n ; c++ ) ******* * ** * ** *** **** array
* * * ** ** * * ** * * ***** * ** ** ******* * ***

** * * * ** *** ** * * **** * * ** **** * ** * ** * * *** * * * ** *** * * ** the location where you wish to delete element

**** ** * ** *** * * ***** * * ** * //If delete success then print the result
* * * **** * ** ** ** ** * * ***** c = 0 ; c < n - 1 ; c++ ) ***** * **** * ** *** *** ** * * *** ** **** **** *** the result array
** **** * * ***** ** ** * * * * * * * ** ***** ** * *** ******* ** * ", array[c]);
* **** * * * ***** *** * ***** ** **** * *** **** *** ***** *** * * *** * * * * *** **** ***** ** * * ** * * * * * ** fail
*** * ** ** * * 0;
}
answered by (-498 points)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
0 like 0 dislike
Hidden content!
#include *** ** **
int delete_e(int arr[],int size,int position)
{
***** * ** *** * ** * ** i;
**** * * *** * ****** *** ***
* * **** *** **** * ** * * *
** ****** ** ** * ** *** * ***** * ****** * ***** ** *** **
** ** ** ** ** *
****** ** * ** * * ****** * * **
* ****** *** ** ** ** * ** *** ** ** ** 0;
**** * ** * * * * *** *****
* * * * * * * **** * ** **** * ** ** ** ** 1;
}

int main(void)
{
** * ****** array[100], position, c, n;

** *** * ** ** ** * * * ** ** * ** &n); //Enter number of elements in array
* * **** * * *** ( c = 0 ; c < n ; c++ ) *** ***** * * * **** array
**** ** * ****** * ******* ** ** * ** * * * *** *

*** ** **** *** ** * * ** * * * ** *** **** * *** * * * * * ** ** ** ** ***** ** ** * * the location where you wish to delete element

*** ** ** ** *** * * * *** * ** ** //If delete success then print the result
*** * * * ** * **** * ** *** c = 0 ; c < n - 1 ; c++ ) *** * ** *** * **** ** * * * * ** * * * * ** ** ** ** ** * the result array
* *** * *** ****** * * * * * * ** ** ** ** * ** **** ** * ** * ** * ", array[c]);
* * * *** **** * * * * ***** * ** * *** ** ** * * ** * ** * * ** ** * ** * ** *** ** * *** * * * * ** fail
** ** * ** * ******* 0;
}
answered by (-498 points)
0 0
Case 0: Correct output
Case 1: Wrong output
Case 2: Correct output
Case 3: Correct output
0 like 0 dislike
Hidden content!
#include * * * * * **
int delete_e(int arr[],int size,int position)
{
* **** * **** ** * ** ** * i;
** * ** **** *** * * **** * * ***** * ***
* * ** * ** *********
****** * ** *** * * **** * ***** ***** * **** * ** *****
*** * *** * * * ***** * * * *
** * ** * * ** * *** **** ************ * * ***** * * ** ** **** * 0;
**** * ** * **** *** * **** * * * *
** * * * ***** ** * * ** * * ** * * * *** ** * 1;
}

int main(void)
{
** ** *** *** * array[100], position, c, n;

******* ** ***** ** * ** * ***** &n); //Enter number of elements in array
* * *** ** * ** * ( c = 0 ; c < n ; c++ ) *** **** ** * ** * *** array
* ** ** ** ****** * ** ** * * **** * ** * * * ***** * * **

***** ** * * ** * * * ** * * * &position); *** * ** * ** * * * *** * * * * * * * the location where you wish to delete element

* *** **** * * * * //If delete success then print the result
* * * * * * *** ** * * ** ****** ** c = 0 ; c < n - 1 ; c++ ) ** * * ** * ** ** ** * * **** * *** ** ** ** * * * ** ** * * * the result array
* *** ** ***** * * * ** ** **** * * **** * ** ** * ** * * ** * * ***** ** * * *** ** * * ", array[c]);
* *** * * *** *** * * * ** * * * * *** ** ** * ** * *** * * **** * * * ** ***** ** * * ******* * * * **** * * *** ** fail
* ** * * * ** * 0;
}
answered by (-498 points)
0 0
Case 0: Correct output
Case 1: Wrong output
Case 2: Correct output
Case 3: Correct output
0 like 0 dislike
Hidden content!
#include * * * **
int * *** arr[],int size,int position)
{
***** * ******** *** * (position > size)
* * ** ** * * * * **** * ** * ** * * 0;
* * **** ********** ***** **** *
** ****** * *** ***** * ** * ***** **** ; position **** * * ****
* **** * * ** *
* ** **** ** * * * * * * *** ** * * ** * * *** * * ** * ** ** *
** * * * * * * **
* * ****** ** * * 1;
}

int main(void)
{
** * ** * ** ** ** ** position, c, n;

* ** ** ** ** ** **** *** * * //Enter number of elements in array
** ** * * * ( c = 0 ; c < n ; c++ ) ***** * ** **** * * *** *** array
** ** ** ** ****** * * * ** * * ** * ** * ** ** * * * * * *

* *** ** *** **** * ** * ** * ** * ***** * ** *** * *** *** *** * * ***** * * **** * the location where you wish to delete element

* * * **** ***** *** * * *** //If delete success then print the result
**** ** * * ** ** * * ** * * **** c = 0 ; c < n - 1 ; c++ ) **** *** ****** ********** **** *** *** ** ** **** ** *** * the result array
* ** ********* ** * * * ** *** * **** * * *** *** ***** * * * * *** * ", array[c]);
*** ** ** ** ** * ****** ** * * ** * ** ** * * ** * **** ** ** * * ***** * * * ** *** ** ***** *** * * * * * * fail

*** * * **** * ** *** 0;
}
answered by (-127 points)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
0 like 0 dislike
Hidden content!
#include * * *
int ** * *** arr[],int size,int position)
{
** ** ** * * *** ** ** * > size)
**** * ** *** ***** * * * *** ** ** * ***** * ** 0;
* * ** ** ** *** * * **
***** **** * * * * * ** ; position < size ; *
***** *** **** * * ***
** * *** * * * * ** *** * * *** ***** ** * ** = * ** *
******** *** * ****
* ***** ** * * * **** 1;
}

int main(void)
{
* * *** *** * ** * * ** position, c, n;

* *** ****** * **** * ** * * ** ** * //Enter number of elements in array
* ** *** * * * ( c = 0 ; c < n ; c++ ) **** *** * ** * * * array
* ***** * ******* * * * * * ** * * * *** * * ***

** ** * **** ** ** ****** ** * * * **** * * * * * * * * ****** ******* * * * **** * * the location where you wish to delete element

* ****** **** * ** ** * * *** //If delete success then print the result
* *** * ** * *** ** * ** ******* *** c = 0 ; c < n - 1 ; c++ ) ** *** ** ** * ** ** * ** ** * ** * * * ** ******* * ** * ** * the result array
** * ** **** * * ** ** ** *** ***** * * *** * * *** * * * * * **** * ** **** * * * ** * * array[c]);
* *** * ** * * * * * * ** * *** * ** ** ** * * **** * * * * ****** ** ** * *** *** * ** * * * fail

*** *** * * ***** 0;
}
answered by (-255 points)
0 0
Case 0: Correct output
Case 1: Correct output
Case 2: Correct output
Case 3: Correct output
Welcome to Peer-Interaction Programming Learning System (PIPLS) LTLab, National DongHwa University
English 中文 Tiếng Việt
IP:172.69.58.82
©2016-2025

Related questions

0 like 0 dislike
45 answers
[Exercise] Coding (C) - asked Dec 7, 2017 in Chapter 9: Functions by semicolon (5.2k points)
ID: 35784 - Available when: 2017-12-07 18:00 - Due to: Unlimited
| 5.6k views
0 like 0 dislike
79 answers
[Exercise] Coding (C) - asked Dec 28, 2017 in Chapter 9: Functions
ID: 39986 - Available when: Unlimited - Due to: Unlimited
| 10.7k views
0 like 0 dislike
70 answers
[Exercise] Coding (C) - asked Dec 7, 2017 in Chapter 9: Functions by semicolon (5.2k points)
ID: 35783 - Available when: 2017-12-07 18:00 - Due to: Unlimited
| 7.7k views
12,783 questions
183,442 answers
172,219 comments
4,824 users