All pastes #2073361 Raw Edit

Stuff

public text v1 · immutable
#2073361 ·published 2011-06-01 19:22 UTC
rendered paste body
#include <iostream.h>
void add(int *);
main()
{
	int a[10], i;
	cout << "Please enter 10 numbers  ";
	for (i=0; i<10; i++)
	{ cin >> a[i];}
	add(&a[0]);
	for (i=0; i<10; i++)
	{ cout <<a[i];}
}
void add(int *pa)
{
	int j;
	for (j=0; j<10; j++)
	{	(*pa+j)=(*pa+j)+2;}
}