- 26
- 64 280
Vijay Vishwakarma
India
Приєднався 13 лис 2008
Welcome to my Channel.
This is Vijay Vishwakarma, I am an Engineering Manager & Technical Coach with 14 years of experience in Software Development & Technical Training.
It will be a pleasure to connect over LinkedIn.
www.linkedin.com/in/vijay-vishwakarma-46324511/
This channel is dedicated for Technical Videos on Programming using different programming languages, Design Principles & Design Patterns, Algorithm & Data Structure, and anything that will add value to groom your technical skills.
This is Vijay Vishwakarma, I am an Engineering Manager & Technical Coach with 14 years of experience in Software Development & Technical Training.
It will be a pleasure to connect over LinkedIn.
www.linkedin.com/in/vijay-vishwakarma-46324511/
This channel is dedicated for Technical Videos on Programming using different programming languages, Design Principles & Design Patterns, Algorithm & Data Structure, and anything that will add value to groom your technical skills.
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
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
05 Memory Segments Text,Data,Stack,Heap
Переглядів 58 тис.4 роки тому
05 Memory Segments Text,Data,Stack,Heap
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
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
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. 😊
Keep it up.
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?
sir where is the part 2 successor to this video?
Thanks!
Well, this is well explained. Thanks! 🙌
Very good explanation ❤
ya it's the best explanation so far on the videos I have watched about c memory layouts thanks
Just what i need to know, no more and no less. a Must add subs list alligators.
Amazing, love it!
❤️🌸
Good explainnation tq
please check with compiler... local variables are store in stack not in bss....
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.
@@vijay10june can you please talk more about where the command line arguments will get stored in memory , the part that you called "Environment? thanks
was useful
Realllly, you explained it very well! Keep going... Anyways, the audio quality was a bit of problematic, will sound good if it is fixed :)
Mic quality is so bad but thanks for content!
Take Respect and Love 😍💖
Nice explaination
Hats off to your explanation brother
Very well explained 👌🏻👍
Very well explained sir
Short + Simple + Clear + Understandable = Brilliant explanation thank you so much
I honestly feel this : every btech cse student must see this video. Thanks a lot sir ALMIGHTY bless you with all kinds of wealth
Good explanation Should have uploaded more video's
Best explained
Very well explained!!
very helpful!
Thank u.. Great explanation
Thank you for the wonderful explanation.
thanks sir very useful information for me. thanks a lot for this video.
Perfect!
Nice explaination 🎉,need more videos sir
Thanks... Sure.. :)
Very informative lecture, can u make more videos on pointers and data structures if possible
You are Excellent :)
How all that memory layers get splitted by paging and virtual memory segmentation ?
search for MMU unit in an application processor (for example broadcomm or nxp arm processor)
6:30 you might have added somewhere whats the benefit of un- and initialized segments
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.
Best explanation ❤️
very useful and simple explanation. thanks
Please make more videos on data structures and algorithms..
Thank you so much!
Simplified Explanation 👍🏻👍🏻
Nice 👌
Hi sir, I was one of your old student. Good to see you on you tube.
Hi Dattatreya, Happy to see you ! Hope you are doing good!
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
Thanks Prasad! :) I will be adding more videos to the channel on the topics mentioned by you !
👌👌😍
👌👌😍
Awesome 😍👌
Thanks sirjee!
U Rocked it Sir.
Thank you... glad that you liked it!
Very nice. Easy to understand.