Code:
#include <stdio.h>
#include <stdlib.h>

#define SIZE 2

main()
{
   int i,j;
   char aac[][SIZE] = {{'a','b'},{'c','d'}}, *as[] = {{"Hello"},{"World"}};


I want the output to be:

abcd

HelloWorld

So I wrote this:


Code:
   puts("char aac[][2]\n");
   
   for (i=0; i<SIZE ; i++)
    for(j=0; j<SIZE ; j++)
     printf("%c",   aac[i][j]);


And so far so good, but as for the array of strings I don't know what condition to put on the loop. So it looks like this:


Code:
    puts("\n\nchar *as[]\n");
   
    for(i=0; ???  ; i++)
     for(j=0; as[i][j]!='\0' ; j++)
      printf("%c", as[i][j]);


What do I put in ???
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement