Vijay Vishwakarma
Vijay Vishwakarma
  • 26
  • 64 280
06 Input Output in C++ (cout & cin objects)
This video talks about using cout & cin objects in program for i/o operations
Video covers following concepts
1. Input & Output stream
2. cascading input & output using insertion & extraction operator
I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming.
Vijay Vishwakarma
www.linkedin.com/in/vijay-vishwakarma-46324511
vijay.10june@gmail.com
Переглядів: 218

Відео

07 Function Introduction
Переглядів 903 роки тому
Its an introduction video to function in C . This video covers following topics 1. What is function? 2. Syntax for defining function 3. function declaration, call & definition. I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. Vijay Vishwakarma www.linkedin.com/in/vijay-vishwaka...
05 Reference Variables
Переглядів 783 роки тому
This is an introduction video to reference variables It covers following topics 1. What is reference variable? 2. How to declare a reference variable? I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. Vijay Vishwakarma www.linkedin.com/in/vijay-vishwakarma-46324511 vijay.10june@...
04 Namespace in C++
Переглядів 1133 роки тому
Namespace is a way of defining a scope & logically grouping things in c This video covers following topics 1. What is namespace? 2. How to declare namespace? 3. using namespace & scope resolution operator 4. Global namespace. I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. Vij...
03 First Project in Visual Studio
Переглядів 463 роки тому
This video is useful if you are new to visual studio environment. This video covers following 1. Creating Empty project for C development 2. Add a new source file 3. Build & Execute the code I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. Vijay Vishwakarma www.linkedin.com/in/...
02 First C++ Program On Command Prompt
Переглядів 583 роки тому
First C Program. This video covers following topics. 1. Compilation & Linking model of C program 2. Hands on example of Program that displays "Hello World" Message on Screen. I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. Vijay Vishwakarma www.linkedin.com/in/vijay-vishwakarm...
01- C++ Overview
Переглядів 1203 роки тому
Welcome to the introduction video on C . I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. Vijay Vishwakarma www.linkedin.com/in/vijay-vishwakarma-46324511 vijay.10june@gmail.com
07 Call by Value - Value by Reference | Concept & Program Implementation
Переглядів 3934 роки тому
Parameters to function call is either Call by Value or Call by Reference. This video covers following topics. 1. Concept of Call by Value with Example Program 2. Concept of Call by Reference with Example Program 3. Example program with mixture of Call by Value & Call by Reference. I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic ...
06 Pointer Getting Started
Переглядів 1,3 тис.4 роки тому
This video gives an introduction to Pointers in C. It will help to to understand how you C program how variables are stored in memory & can be access using pointers. It covers following topics 1. Variable & Memory fundamental 2. Declaring & Using pointer 3. Program example. I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you wou...
Bubble Sort | Interview Question | Program Implementation
Переглядів 2504 роки тому
This video talks about working of Bubble sort Algorithm with a program example. I am using Visual Studio IDE for building the code, but you can use any other editor and follow the code. I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. Vijay Vishwakarma www.linkedin.com/in/vijay...
Reverse Array Elements | String Reverse | Interview Question | Program Implementation
Переглядів 1054 роки тому
It is one of the frequently asked questions in programming interviews to entry level developers. This video covers following topics 1. Algorithm of Reversing elements in Array 2. Program Implementation I am using Visual Studio IDE for building the code, but you can use any other editor and follow the code. I will appreciate your comments & if you like the video then do subscribe to the channel ...
Array Rotation | Left Rotate | Right Rotate | Interview Question | Program Implementation
Переглядів 4544 роки тому
There are 2 types of Array Rotate Operations 1. Left Rotate 2. Right Rotate It is one of the frequently asked questions in programming interviews. This video covers following topics 1. Left Rotation & Right Rotation 2. Algorithm to Rotate Array 3. Program implementation of Left Rotation I am using Visual Studio IDE for building the code, but you can use any other editor and follow the code. I w...
Binary Search Algorithm | Iterative Method | Program Implementation
Переглядів 2134 роки тому
Binary search algorithm uses Divide & Conquer Strategy of problem solving. This video explains following things. 1. What is Binary Search? 2. How Binary Search Works? 3. Program implementation. I am using Visual Studio IDE for building the code, but you can use any other editor and follow the code. I will appreciate your comments & if you like the video then do subscribe to the channel & let me...
Linear Search Algorithm using Array Implementation
Переглядів 2044 роки тому
This video covers following topics of Linear Search Algorithm 1. What is Linear Search 2. How Linear Search algorithm works? 3. Implementation using Array in C 4. Algorithm Analysis of Linear Search - Best Case & Worst Case Time Complexity I am using Visual Studio IDE for building the code, but you can use any other editor and follow the code. I will appreciate your comments & if you like the v...
Display first N natural Numbers
Переглядів 1064 роки тому
This program display first N natural numbers. e.g: Input: 5 Output: 1 2 3 4 5 i.e Input : N Output: 1 2 3 4.... N-2 N-1 N I am using Visual Studio IDE for building the code, but you can use any other editor and follow the code. I will appreciate your comments & if you like the video then do subscribe to the channel & let me know which topic you would like to see on the channel on programming. V...
Program to display the Max of 2 Number
Переглядів 624 роки тому
Program to display the Max of 2 Number
Program to Swap 2 numbers
Переглядів 284 роки тому
Program to Swap 2 numbers
Program to Add 2 Numbers
Переглядів 964 роки тому
Program to Add 2 Numbers
Program to Add first N Numbers
Переглядів 384 роки тому
Program to Add first N Numbers
Program to Display first N Numbers
Переглядів 934 роки тому
Program to Display first N Numbers
05 Memory Segments Text,Data,Stack,Heap
Переглядів 58 тис.4 роки тому
05 Memory Segments Text,Data,Stack,Heap
04 Functions in C Part 1
Переглядів 2344 роки тому
04 Functions in C Part 1
03 Variables & Data Types Part 1
Переглядів 3134 роки тому
03 Variables & Data Types Part 1
01 Getting Started with Google Forms
Переглядів 1444 роки тому
01 Getting Started with Google Forms
02 Setting Environment & Creating Project in Visual Studio
Переглядів 2864 роки тому
02 Setting Environment & Creating Project in Visual Studio
01 Getting Started with C Programming
Переглядів 1,3 тис.4 роки тому
01 Getting Started with C Programming

КОМЕНТАРІ

  • @devaarjunanb5030
    @devaarjunanb5030 28 днів тому

    In the first example you said the local variables go to the data section... In the second example you said the local variables go to stack.. I am confused here

    • @vijay10june
      @vijay10june 28 днів тому

      Local variables if declared static then the scope is at functional block but, lifetime of variable is throughout the execution of program. Hence, static local variable is stored in Data Section & local variable are stoared in stack frame of function call in stack Section. 😊

  • @DoIt_Motivation
    @DoIt_Motivation Місяць тому

    Keep it up.

  • @user-hk4cu5go9c
    @user-hk4cu5go9c 4 місяці тому

    At 6:40, would variable b not be stored on the stack instead of the unitialised data segment since it is inside main() and the stack stores the local variables and function parameters of function calls?

  • @sarthak-salunke
    @sarthak-salunke 6 місяців тому

    sir where is the part 2 successor to this video?

  • @bakeronews1
    @bakeronews1 6 місяців тому

    Thanks!

  • @AdoBroTV
    @AdoBroTV 10 місяців тому

    Well, this is well explained. Thanks! 🙌

  • @electronicgyankosh7942
    @electronicgyankosh7942 Рік тому

    Very good explanation ❤

  • @hashimsulaiman6003
    @hashimsulaiman6003 Рік тому

    ya it's the best explanation so far on the videos I have watched about c memory layouts thanks

  • @oudekraal7460
    @oudekraal7460 Рік тому

    Just what i need to know, no more and no less. a Must add subs list alligators.

  • @89Bostonian
    @89Bostonian Рік тому

    Amazing, love it!

  • @prempresents8776
    @prempresents8776 Рік тому

    ❤️🌸

  • @gayathripochampalli7478
    @gayathripochampalli7478 2 роки тому

    Good explainnation tq

  • @sivaprasad876
    @sivaprasad876 2 роки тому

    please check with compiler... local variables are store in stack not in bss....

    • @vijay10june
      @vijay10june 2 роки тому

      Local variables are stored in stack segment on stack frame. But what if, its a static local variable? It wont be stored on stack since, the scope is local but the lifetime of the variable is during the execution of the code. So, It should be stored on Data Segment - BSS segment. I would like to know your thoughts on the same! Appreciate your input.

    • @zoquevil4792
      @zoquevil4792 2 роки тому

      @@vijay10june can you please talk more about where the command line arguments will get stored in memory , the part that you called "Environment? thanks

  • @dragonhot6951
    @dragonhot6951 2 роки тому

    was useful

  • @Mr_SSK
    @Mr_SSK 2 роки тому

    Realllly, you explained it very well! Keep going... Anyways, the audio quality was a bit of problematic, will sound good if it is fixed :)

  • @wealthmaster69
    @wealthmaster69 2 роки тому

    Mic quality is so bad but thanks for content!

  • @RakibAhmed-vn9hs
    @RakibAhmed-vn9hs 2 роки тому

    Take Respect and Love 😍💖

  • @sansclemens2340
    @sansclemens2340 2 роки тому

    Nice explaination

  • @sandipnayak6885
    @sandipnayak6885 2 роки тому

    Hats off to your explanation brother

  • @yogeshbhure4476
    @yogeshbhure4476 2 роки тому

    Very well explained 👌🏻👍

  • @roopaization
    @roopaization 2 роки тому

    Very well explained sir

  • @sallaklamhayyen9876
    @sallaklamhayyen9876 2 роки тому

    Short + Simple + Clear + Understandable = Brilliant explanation thank you so much

  • @tsvmanojturlapati4492
    @tsvmanojturlapati4492 2 роки тому

    I honestly feel this : every btech cse student must see this video. Thanks a lot sir ALMIGHTY bless you with all kinds of wealth

  • @prachandsachin4640
    @prachandsachin4640 3 роки тому

    Good explanation Should have uploaded more video's

  • @veercreation9111
    @veercreation9111 3 роки тому

    Best explained

  • @yashu_goel
    @yashu_goel 3 роки тому

    Very well explained!!

  • @codepoachers6870
    @codepoachers6870 3 роки тому

    very helpful!

  • @amitbankapur
    @amitbankapur 3 роки тому

    Thank u.. Great explanation

  • @adithyareddy3729
    @adithyareddy3729 3 роки тому

    Thank you for the wonderful explanation.

  • @69officialtournaments92
    @69officialtournaments92 3 роки тому

    thanks sir very useful information for me. thanks a lot for this video.

  • @EmanoelLucas8552
    @EmanoelLucas8552 3 роки тому

    Perfect!

  • @axramar1992
    @axramar1992 3 роки тому

    Nice explaination 🎉,need more videos sir

  • @sureshk8421
    @sureshk8421 3 роки тому

    Very informative lecture, can u make more videos on pointers and data structures if possible

  • @PramodKumarTrueFriend
    @PramodKumarTrueFriend 3 роки тому

    You are Excellent :)

  • @jevsdisjava
    @jevsdisjava 3 роки тому

    How all that memory layers get splitted by paging and virtual memory segmentation ?

    • @coderhex1675
      @coderhex1675 9 місяців тому

      search for MMU unit in an application processor (for example broadcomm or nxp arm processor)

  • @danielkrajnik3817
    @danielkrajnik3817 4 роки тому

    6:30 you might have added somewhere whats the benefit of un- and initialized segments

  • @ganeshtange4763
    @ganeshtange4763 4 роки тому

    Vijay sir why you have stopped creating such videos you are too good or if you would like to teach other subject that will also fine but once you teach it's lifetime.

  • @abdelrahmanal-mokhraty9198
    @abdelrahmanal-mokhraty9198 4 роки тому

    Best explanation ❤️

  • @vidyasagark2274
    @vidyasagark2274 4 роки тому

    very useful and simple explanation. thanks

  • @debasishjena9555
    @debasishjena9555 4 роки тому

    Please make more videos on data structures and algorithms..

  • @ajeetyadav1093
    @ajeetyadav1093 4 роки тому

    Thank you so much!

  • @moseskandukuri8503
    @moseskandukuri8503 4 роки тому

    Simplified Explanation 👍🏻👍🏻

  • @learningwithfun8244
    @learningwithfun8244 4 роки тому

    Nice 👌

  • @dattatreyanikam1635
    @dattatreyanikam1635 4 роки тому

    Hi sir, I was one of your old student. Good to see you on you tube.

    • @vijay10june
      @vijay10june 4 роки тому

      Hi Dattatreya, Happy to see you ! Hope you are doing good!

  • @prasadsardeshmukh3898
    @prasadsardeshmukh3898 4 роки тому

    Vijay Vishwakarma and Hemant Shah are the best trainers for CAD/PLM customization. Had an opportunity to interact with both in 2018 at Geometric-HCL. It will be great if vijay can cover some sessions on interface, COM, Object Model, design patterns, c++11/14, client-server architecture etc. There are very limited resources available on above topics on UA-cam

    • @vijay10june
      @vijay10june 4 роки тому

      Thanks Prasad! :) I will be adding more videos to the channel on the topics mentioned by you !

  • @ajitmore5632
    @ajitmore5632 4 роки тому

    👌👌😍

  • @ajitmore5632
    @ajitmore5632 4 роки тому

    👌👌😍

  • @ajitmore5632
    @ajitmore5632 4 роки тому

    Awesome 😍👌

  • @learningwithfun8244
    @learningwithfun8244 4 роки тому

    U Rocked it Sir.

    • @vijay10june
      @vijay10june 4 роки тому

      Thank you... glad that you liked it!

  • @learningwithfun8244
    @learningwithfun8244 4 роки тому

    Very nice. Easy to understand.