License, disclaimer of liability, and limited warranty



Download 2,08 Mb.
Pdf ko'rish
bet213/393
Sana05.01.2022
Hajmi2,08 Mb.
#319699
1   ...   209   210   211   212   213   214   215   216   ...   393
Bog'liq
C Programming A Self Teaching Int 1uq45XL

OUTPUT (after running):
Enter the row and column of a matrix: 3 3
Echoing …
1 2 3
4 5 6
7 8 9
Largest element is 9
Largest element is stored at 3 row and 3 column
Smallest element is 1
Smallest element is stored at 1 row and 1 column
Example
 
5: Write a C program to print Pascal’s triangle—that is,
1
 
 
1
1
 
1
2
1
1 3
3
1
 
1 4
6
4
1 ?
Solution 5:
 The program is as follows:
#include
#include
void main( )
{
   int a[10][10], i, j, n;
   clrscr( );
   printf(“\nHow many rows you want?”);
   scanf(“%d”, &n);
   for (i =1; i< = n; i++)
    {
      for (j=1; j <=i j++)
       {
         if (j = = 1 | | j = = i)
               a[i][j] = 1;
         else
               a[i][j] = a[i-1][j] + a[i-1][j-1];
         printf(“%d\t”, a[i][j]);
       }


       printf(“\n”);
    }
   getch( );
}
OUTPUTS (after running):
How many rows you want? 5
1
 
 
 
 
1
1
 
 
 
1
2
1
 
 
1
3
3
1
 
1
4
6
4
1
What Is an Array of Characters
Like a number array, we can also define and use character arrays, which are declared as follows:
char array_name[size];
Here, 
array_name
 is the name of the array storing character-type data and 
size
 is the total number
of characters in 
array_name.
For example,
char name[80];
Here, name is an array that can hold upto 80 characters. Again, array indexes start from 0. So the
fifth element of name[ ] array is referred to as:
name[4];
Similarly, entire array elements can be accessed using loops.
How to Read Characters into a Character Array
The procedure is the same as that for integer arrays, but you should know that a character takes 1 byte,
so an array of characters storing 10 characters will have a size of 10 bytes. Here is the loop:
for(i=0; i       scanf(“%c”, &name[i]);

Download 2,08 Mb.

Do'stlaringiz bilan baham:
1   ...   209   210   211   212   213   214   215   216   ...   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