Komentáře •

  • @NareshIT
    @NareshIT Před 5 lety +1

    Please Comment, Subscribe and Click Bell🔔🔔🔔 Icon for More Updates. To learn software course from our experts please register here for online training: goo.gl/HIB0wL

    • @roymarley5178
      @roymarley5178 Před 2 lety

      I dont mean to be so off topic but does someone know a way to get back into an instagram account..?
      I was dumb forgot the account password. I would love any tricks you can give me.

  • @jaswanthdasireddy
    @jaswanthdasireddy Před 5 lety +8

    I watched all ur videos sir......very useful to my exams.....🙏🙏🙏👏👏👏TQ very much sir.......u r having such a good knowledge 😊😊

  • @sudeshnaC
    @sudeshnaC Před 6 lety +36

    Very nicely explained but at 11:31 is t.get() is not going to print 10 instead it should print 100. This is because the static variable 'a' is overwritten inside main which comes after the definition "int Test::a=10;"

    • @mh_trader_24
      @mh_trader_24 Před 6 lety +1

      correct I also want to say the same

    • @mylessons4u857
      @mylessons4u857 Před 5 lety

      you are right dear the value of has been updated within main()

    • @mounikamouni9670
      @mounikamouni9670 Před 3 lety

      Yes true

    • @developer1853
      @developer1853 Před 3 lety

      Exactly

    • @pavanbn8d
      @pavanbn8d Před rokem

      #include
      using namespace std;
      class staticMember {
      public:
      static int a; //Static member declaration
      void get() {
      a = 10;
      cout

  • @LinguistAna
    @LinguistAna Před 5 lety +3

    Love your tutorials thank you so much for taking the time to upload. I am teaching myself coding and find your videos extremely helpful.

  • @manaswiniachuthan884
    @manaswiniachuthan884 Před 4 lety

    This is what I needed thanks for teaching and clearing my doubts

  • @sumaiyasulthana903
    @sumaiyasulthana903 Před 5 lety

    fantastic sir. i understood the concept clearly

  • @arshmaanali714
    @arshmaanali714 Před 2 lety +1

    love from Pakistan excellent way of explanation

  • @pranjalsahu5719
    @pranjalsahu5719 Před 4 lety

    Very nicely explained!!

  • @user-lm5ju8nc2t
    @user-lm5ju8nc2t Před 4 lety

    good tutorials, well done!

  • @bharathip9012
    @bharathip9012 Před 5 lety

    sir 7.28 both local variable and static variable both are accessed by class objects t1,t2,t3. then whats the difference. difference only declaration and defination????

  • @rakshithkumar9381
    @rakshithkumar9381 Před 3 lety +1

    Static data member is declared in Public area which is against data hiding concept. Is this true??

  • @12nov83
    @12nov83 Před 6 lety

    hi sir did u make c programing tutorials

  • @konderikundhini0573
    @konderikundhini0573 Před 3 lety

    Sir can you explain us what is difference between static ,global and constant variables?

  • @avr96
    @avr96 Před 7 lety +6

    sir please arrange all your videos in a proper manner

  • @penumallasiva9519
    @penumallasiva9519 Před 3 lety

    why we cant access non static data members in static member functions?

  • @mekalamadhankumar3224
    @mekalamadhankumar3224 Před 4 lety

    Thanks sir

  • @benbenuu6703
    @benbenuu6703 Před 3 lety +1

    masterpiece

  • @tusharchakraborty9480
    @tusharchakraborty9480 Před 6 lety

    Please provide numbering of videos lecture by lecture.

  • @celebrityClube
    @celebrityClube Před 6 lety

    Sir define ...pre declear pre define parametriz returnable function ... example

  • @akshitarawat1970
    @akshitarawat1970 Před 6 lety

    Sir y the static data member is needed to b in public area ??? When object is calling member function to initialize the data member ,then hw it matters if the data member is private or public??

    • @arvindersingh1376
      @arvindersingh1376 Před 5 lety

      Just becoz we declare static data member in class But v have to define it ouside the class Thus it is only possible if static data members are public

  • @selvapriya4115
    @selvapriya4115 Před 4 lety

    Pls give class in reinterpret cast,static cast,dynamic cast

  • @kavitapatil1944
    @kavitapatil1944 Před 6 lety +3

    Sir plz explain what is instance ,static,local variable

    • @sdetbyraviteja568
      @sdetbyraviteja568 Před 3 lety

      Instance is nothing but a copy Or xerox of original copy
      Here the original copy means class
      And xerox copy means object.

  • @celebrityClube
    @celebrityClube Před 6 lety

    Sir ...printf can return any value or not

    • @AB-yg6gb
      @AB-yg6gb Před 6 lety

      It return the value of no of letters it printing

  • @viswanathgupta7406
    @viswanathgupta7406 Před 7 lety

    load another sessions sir

  • @veeradlima6642
    @veeradlima6642 Před 4 lety

    Scope resolution operator video

  • @wild2649
    @wild2649 Před 8 měsíci

    prints a=100 both times

  • @vamsiv3337
    @vamsiv3337 Před 5 lety

    I HAVE A DOUBT
    WHAT IS MEAN BY LVALUE REQUIRED

  • @Amandeep-yl3rg
    @Amandeep-yl3rg Před 6 lety +2

    both will print 100 sir

  • @bagrat5194
    @bagrat5194 Před 3 lety

    it will print 100

  • @II_xD_II
    @II_xD_II Před 4 lety

    Exam point of view -_-

  • @ajaykharat8689
    @ajaykharat8689 Před 6 lety

    Ajay Kharat
    50 minutes ago
    yes
    #include
    #include
    #include
    using namespace std;
    class ajay
    {
    private:
    int a;
    public:
    static int s;
    void getdata()
    {
    a=20;
    s+=2;
    cout

  • @DilipKumar-du8ui
    @DilipKumar-du8ui Před 3 lety

    Sir is not feeling good in this video