/*DEVELOP A FUNCTION USING POINTERS THAT REVERSE THE ELEMENTS OF AN ARRAY*/
#include<stdio.h>
int* reverse(int *orig,int b)
{
    int a=0,swap;
    for(;a<--b;a++)
    {
    ............

The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.


     

Saturday, May 14, 2011

function,reverse elements of array,using pointers,c,programm,lab,record,first semester,bca

/*DEVELOP A FUNCTION USING POINTERS THAT REVERSE THE ELEMENTS OF AN ARRAY*/
#include<stdio.h>
int* reverse(int *orig,int b)
{
    int a=0,swap;
    for(;a<--b;a++)
    {
    ............

The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.