Tag Archives for Call By Reference

program to accept 10 numbers and sort them with use of pointer

#include<stdio.h> main ( ) {     int i, j;     int arr[ 10 ];     int *a;     a = arr;       for ( i = 0;i < 10;i++ )         {            … Continue reading

15. November 2009 by Jishnu
Categories: C Programming | Tags: , , | Leave a comment

← Older posts