Program To Accept All Integer Values Into An Array
/* Program To Accept All Integer Values Into An Array Called ab[] And Then Copy All The Even No. Into An Array Called a[], Odd No.Into An Array Called b[] */ #include
#include
void main() { int ab[50],a[50],b[50]; int i,sz,j=0,k=0; clrscr(); do { printf("\nenter number of values (max.50)\n\n"); scanf("%d",&sz); } while(sz<0||sz>50); for(i=0;i
Please send comments to
vgdarur.javafive@blogger.com
Copyright © 2008 - iForeRunner.com
http://www.iforerunner.com/