Thread: Right or wrong?
View Single Post
  #3 (permalink)  
Old January 30th, 2004, 07:52 AM
ankur_vachhani ankur_vachhani is offline
Authorized User
 
Join Date: Jan 2004
Posts: 16
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to ankur_vachhani
Default

YOUR CODE WILL GO LIKE THIS

    char season[][]={"spring","summer","fall","winter"};


        for(int i = 0 ;i<4;i++)

            printf("Season = %s",season[i]);


            HTH


Reply With Quote