ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories >> Code-Snippets >> Programming-Code >> C-Code
 
 
 
Question
Write a routine that prints out a 2-D array in spiral order
 Question Submitted By :: =-pkg-=
I also faced this Question!!     Rank Answer Posted By  
 
Answer
#include<stdio.h>
#include<conio.h>
#define n 4
void main()
{
	int A[n][n]={{1,2,3,4},{5,6,7,8},{9,10,11,12},{13,14,15,16}};
	int min=0,max=n-1,i,j;
	clrscr();
	while(min<max)
	{
		for(i=min;i<=max;i++)
			printf("%d,",A[min][i]);
		for(i=min+1;i<=max;i++)
			printf("%d,",A[i][max]);
		for(i=max-1;i>=min;i--)
			printf("%d,",A[max][i]);
		for(i=max-1;i>min;i--)
			printf("%d,",A[i][min]);
		min++;
		max--;
	}
	getch();
}
 
0
Rajendra Kumar
 
View All Answers
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com