const Qualifier in C++

แชร์
ฝัง
  • เผยแพร่เมื่อ 23 พ.ย. 2024

ความคิดเห็น • 11

  • @SumitKumar-xh8tt
    @SumitKumar-xh8tt 3 ปีที่แล้ว +2

    Hope after my inter ends, i would binge this episode.

  • @muqaddasabduljabbar9034
    @muqaddasabduljabbar9034 ปีที่แล้ว

    Lecture was really amazing

  • @dipeshsamrawat7957
    @dipeshsamrawat7957 3 ปีที่แล้ว

    I love Neso Academy. ❤️

  • @dogsgallery2199
    @dogsgallery2199 3 ปีที่แล้ว +2

    Please complete data structure

  • @mdimadullah6365
    @mdimadullah6365 3 ปีที่แล้ว

    Thanks for uploading sir

  • @karansingh-nn7nc
    @karansingh-nn7nc 3 ปีที่แล้ว

    Hlw sir...this is amazing lecture but can you please video lecture on data science courses🙏

  • @mdimadullah6365
    @mdimadullah6365 3 ปีที่แล้ว +2

    Please complete c++ fast

  • @MyTravellingLife9
    @MyTravellingLife9 2 ปีที่แล้ว

    Class object can not be constant?

  • @techbeginners3816
    @techbeginners3816 3 ปีที่แล้ว +1

    Frst like🔥

  • @rajeshprajapati6662
    @rajeshprajapati6662 2 ปีที่แล้ว

    1. // file_1(.)cc defines and initializes a const that is accessible to other files
    2.
    3. extern const int bufSize = fcn();
    4.
    5. // file_2(.)cc
    6. extern const int bufSize; // uses bufSize from file_1
    7.
    8. // uses bufSize defined in file_1
    9.
    10. for (int index = 0; index != bufSize; ++index)
    11.
    // ...
    Cant I direction use bufsize in loop ? Do i need to type again extern const int bufsize ?

    • @rajeshprajapati6662
      @rajeshprajapati6662 2 ปีที่แล้ว

      Declaration and Initialization have been done in File 1 but Do I still need to again write the declaration in the file2 ?