License, disclaimer of liability, and limited warranty


functions push( ) and pop( )



Download 2,08 Mb.
Pdf ko'rish
bet317/393
Sana05.01.2022
Hajmi2,08 Mb.
#319699
1   ...   313   314   315   316   317   318   319   320   ...   393
Bog'liq
C Programming A Self Teaching Int 1uq45XL

functions push( ) and pop( ).
Solution 37:
 The following are the two functions:
/*push operation on stack */
/* stack [ ] is a stack array, item is the data being pushed onto the stack, 
*top is pointer */
/* to top of stack and max_size is the maximum size of stack */
void push (char stack [ ], char item, int *top, int max_size)
{
   if (*top < max_size – 1)
    {
      ++(*top);
      stack[*top] = item;
    }
}
/*pop operation on stack */
/* stack [ ] is a stack array, *top is pointer to top of stack and item is th
e value popped off the stack */
char pop(char stack, int *top)
{
   char item;
   if (*top >= 0) {
      item = stack[*top];
      - (*top);
   }
else {
      item = STACK_EMPTY;
   }
return (item);
}
Summary
Arrays and pointers are related to each other. In this chapter, we have studied 1D, 2D, and 3D arrays.
We have also seen the purpose of writing functions for modular programming. Different techniques of
parameter  passing  have  been  dealt  with.  Pointers  have  been  examined  in  depth  using  a  simpler
approach.

Download 2,08 Mb.

Do'stlaringiz bilan baham:
1   ...   313   314   315   316   317   318   319   320   ...   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