// ConsoleApplication41.cpp: определяет точку входа для консольного приложения.
//
#include "stdafx.h"
#include <stdlib.h>
int main()
{
unsigned int ArraySize;
unsigned int *Array;
unsigned int Sum1 = 0, Sum2 = 0;
printf("Please enter the size of the array: ");
scanf_s("%u"...