Суть в том что бы из одного массива чётные присваивались в другой массив, а не чётные в другой
вот код
#include "conio.h"
#include "stdio.h"
#include "stdafx.h"
int main()
{
int b[10];
int c[10];
int a[10];
for (int i = 0; i < 10; i++)
{
scanf_s("%d" , &a);
}
for (int i = 0; i < 10; i++)
{
if (a % 2 == 0)
{
int b[10];
b = a;
}
else
{
int c[10];
for (int i = 0; i < 10; i++)
{
c = a;
}
}
}
printf("%d", c[10]);
printf("%d", b[10]);
return 0;
}
вот код
#include "conio.h"
#include "stdio.h"
#include "stdafx.h"
int main()
{
int b[10];
int c[10];
int a[10];
for (int i = 0; i < 10; i++)
{
scanf_s("%d" , &a);
}
for (int i = 0; i < 10; i++)
{
if (a % 2 == 0)
{
int b[10];
b = a;
}
else
{
int c[10];
for (int i = 0; i < 10; i++)
{
c = a;
}
}
}
printf("%d", c[10]);
printf("%d", b[10]);
return 0;
}