know yourselves. information, computer, 7 wonders, various.

Saturday, November 11, 2017

C++ programming language part: 46 Sratic storage type


Sratic storage type

In auto storage type, function is lost when the function has been executed completely but in static storage type it ramains value even after the function to which it belongs has been executed. To ensure the difference between auto and static data type follow the following example:

Program 36
            void nova();
            void main()
            {
             int p;
             for(p=0;p<4 o:p="" p="">
             nova();
}
             void nova()
            {
             static int x=1;      // static storage type
             cout<<"The executed time is "<
             x++;

            }


Part- 86 assign the content of twostring



জ্ঞানকোষ প্রকাশনী
৩৮/২-ক, বাংলাবাজার (২য় তলা), ঢাকা।
       ফোনঃ ৭১১৮৪৪৩, ৮১১২৪৪১, ৮৬২৩২৫১.         
                                                     
কলকাতায় পরিবেশক/প্রাপ্তিস্থান
রিতা ইন্টারন্যাশনাল
৩৬, পি.এন. ব্যানার্জি রোড, কলকাতা
ফোনঃ ২৫১৩৮৩৫৯, ৯৮৩০৪৩৯৬৭৯, +৯১৯৮৩০৪৩৯৬৭৯

C++ programming language part: 47 Extern storage type


Extern storage type

It is available to all function in a program file, that is, it is a global variable. A variable declared outside a function is called a global variable.

Program 27
            int p=50;        //extern storage type is also called global variable
            void nova();
            void main()
            {
             int q;
             q=p+20;
             cout<
             nova();
              }
             void nova()
            {
             cout <

            }


Part- 86 assign the content of twostring



জ্ঞানকোষ প্রকাশনী
৩৮/২-ক, বাংলাবাজার (২য় তলা), ঢাকা।
       ফোনঃ ৭১১৮৪৪৩, ৮১১২৪৪১, ৮৬২৩২৫১.         
                                                     
কলকাতায় পরিবেশক/প্রাপ্তিস্থান
রিতা ইন্টারন্যাশনাল
৩৬, পি.এন. ব্যানার্জি রোড, কলকাতা
ফোনঃ ২৫১৩৮৩৫৯, ৯৮৩০৪৩৯৬৭৯, +৯১৯৮৩০৪৩৯৬৭৯