License, disclaimer of liability, and limited warranty



Download 2,08 Mb.
Pdf ko'rish
bet225/393
Sana05.01.2022
Hajmi2,08 Mb.
#319699
1   ...   221   222   223   224   225   226   227   228   ...   393
Bog'liq
C Programming A Self Teaching Int 1uq45XL

OUTPUT (after running):
Enter your string: Dr. Rajiv
Equivalent lowercase string is dr. rajiv
Equivalent uppercase string is DR. RAJIV
Arrays of Strings/2d Array of Characters
An array of strings is also known as two-dimensional array of characters.
Syntax
char arrayname[row][col];
Here, ‘arrayname’ is the name of a 2d array of strings, ‘row’ contains the number of strings, and
‘col’ contains the number of columns reserved for each string.
For example,
char days[7][10];
Here, ‘days’ is the name of the array having 7 strings (or rows) and 10 is the number of columns
reserved  for  each  string/row.  We  can  also  initialize  the  array  of  strings  during  its  declaration  as
follows:
char days[7][10]
=
{
{‘M’, ‘O’, ‘N’, ‘D’, ‘A’, ‘Y’, ‘\0’},


 
 
 
 
{‘T’, ‘U’, ‘E’, ‘S’, ‘D’, ‘A’, ‘Y’, ‘\0’},
 
 
{‘W’, ‘E’, ‘D’, ‘N’, ‘E’, ‘S’, ‘D’, ‘A’, ‘Y’,‘\0’},
 
 
{‘T’, ‘H’, ‘U’, ‘R’, ‘S’, ‘D’, ‘A’, ‘Y’, ‘\0’},
 
 
{‘F’, ‘R’, ‘I’, ‘D’, ‘A’, ‘Y’,‘\0’},
 
 
{‘S’, ‘A’, ‘T’, ‘U’, ‘R’, ‘D’, ‘A’, ‘Y’,‘\0’},
 
 
{‘S’, ‘U’, ‘N’, ‘D’, ‘A’, ‘Y’, ‘\0’},
          };
 
 
Or you can also initialize the array of strings as follows:
char days[7][10] = {
         “MONDAY”,
         “TUESDAY”,
         “WEDNESDAY”,
         “THURSDAY”,
         “FRIDAY”,
         “SATURDAY”,
         “SUNDAY”
        };
This is simpler than the previous one.
Now  if  we  want  to  display  the  contents  of  arrays  of  strings  named  as  days[  ]  [  ],  we  use  the
following statements:
     for(i=0; i<6; i++)
                 printf(“\n%s”, days[i]);
Yet another way of doing this is:
     for(i=0; i<6; i++)
                 printf(“\n%s”, days[i] [0]);
Similarly,  if  we  want  to  read  strings  into  an  array  from  the  keyboard,  we  use  the  following
statement:
     for(i=0; i<6; i++)
                 scanf(“\n%s”, days[i]);
Let us write a complete program now to display weekday name according to a given weekday
number.
#include
main( )
{
char days[7][10] = {
         “MONDAY”,
         “TUESDAY”,
         “WEDNESDAY”,
          “THURSDAY”,
          “FRIDAY”,


          “SATURDAY”,
          “SUNDAY”
         };
 int choice;
 printf(“\nEnter any week day number:”);
 scanf(“%d”, &choice);
 if ((choice >=1) && (choice <=7))
 printf(“\nYou have entered %s”, days[choice – 1]);
 else
    printf(“\nYou have entered wrong number”);
}

Download 2,08 Mb.

Do'stlaringiz bilan baham:
1   ...   221   222   223   224   225   226   227   228   ...   393




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish