#include<iostream.h> main() { int* a;int arr[2][3]; arr[0][0]=1; arr[0][1]=2; arr[0][2]=3; arr[1][0]=4; arr[1][1]=5; arr[1][2]=6; a...
I want to know how to implement the search engine in c/c If any one has the simple search engine program, please give me.
In C programs we print array elements like printf("Elements of array a[%d] = %d",i,a[i]); I want to know how print like above mentioned type...
#include<stdio.h> #define col 3 #define row 3 void foo(int *a,int col , int row) { int i,j; int *a[col][row]; for(i=0;i<col;i++) {...
I have written a program for factorial in recursive and i am not able get how the program work. The program is as follows...
Please any one can help me regarding function call for three dimensional array. How to send result of three dimensional array to main function.
Separate names with a comma.