Posts

Showing posts from December, 2019

How to Run Assembly Language Programming Code In Visual Studio 2019

Image
Assembly Language Programming: If you want to learn Assembly Language while using Visual Studio (Any Version) then you are on the right platform. We will teach you how to do assembly coding in masm as a beginner. You can also watch our videos of Assembly Tutorials here on this post. If you want to follow us on YouTube then click on this link  Bhinder World YouTube Channel . Our aim is to provide you basic knowledge and we will assume you Assembly Language Learner, on this website you will find some basic tutorials that will help you in learning. I suggest you to bookmark this website for a total series of assembly Programming Codes. Tutorial of Machine Language Startup (Assembly Language) in Visual Studio: To get your complete interaction to this course we uploaded Assembly Language Videos on our blog. You can also follow our YouTube channel for upcoming videos. If still you have any queries related to this video you can contact us on our Facebook page. Click on th

Object of Chair Containing Attributes and Behaviors

Image
Object of Chair Containing Attributes and Behaviors: A simple object in C++ Programming using classes containing attributes and behaviors. Attributes are declared in private variables and behaviors are declared in user defined functions in public inside the class of chair Code of the object of Chair: #include<iostream> #include<string> using namespace std; class chair{ //attributes string c_name; string colour; //behaviour public: void inputdetail(){ cin>>c_name; cin>>colour; } void displaydetail(){ cout<<c_name<<" "<<colour<<" "<<endl; } }; .................................................To get the full code see at the end of the article. Download: To download this code click on the given link below: Download

Object of Simple Person

Image
Object of Simple Person: An object of a simple person with some attributes and behaviors are defined here in this post. You can also Download the code of this program easily at the end of the article. Object of Simple Person(Code) #include<iostream> #include<string> using namespace std; class person{ //attributes string name; float age; string reg; //behaviour public: void inputdetail(){ cin>>name>>age>>reg; } void displaydetail(){ cout<<name<<" "<<age<<" "<<reg<<" "<<endl; } }; Go to below to get full code _________________________________________________________________________________ _________________________________________________________________________________ Download: To download this program click on the given link below: Download