├── main.o ├── Project1.exe ├── hgv.txt └── main.cpp /main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/DSA-Practice4/HEAD/main.o -------------------------------------------------------------------------------- /Project1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mustafa-Hassan2001/DSA-Practice4/HEAD/Project1.exe -------------------------------------------------------------------------------- /hgv.txt: -------------------------------------------------------------------------------- 1 | What is Software Development? 2 | 3 | 4 | 5 | In a world driven by technology, software development stands as the unseen architect, shaping our digital experiences and revolutionizing industries. Behind the screens and interfaces lies a process of ingenuity and innovation that melds code into intricate solutions. This article delves into the essence of software development, illuminating its role in our lives and its position as the canvas for modern-day digital artisans. 6 | 7 | 8 | 9 | Read Complete Article Here: https://www.linkedin.com/pulse/what-software-development-syed-mustafa-hassan 10 | 11 | 12 | 13 | #softwaredevelopement #softwareengineering #computerscience #articles #developercommunity #development #softwaredev -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main(int argc, char** argv) { 6 | 7 | // int n ,sum=0; 8 | // cin>>n; 9 | // 10 | // for(int i=1;i<=n;i++){ 11 | // sum = sum + i; 12 | // } 13 | // cout<<"The Result is :"<10*2->20 51 | cout<<(19>>1)<9 52 | cout<<(17>>2)<8/2->4 53 | //Right shift << ( num / 2*times you do) Rf may padding compiler depended hoti hai (paddinig add new number) 54 | cout<<(19<<1)<38 55 | cout<<(21<<2)<42*2->84 56 | return 0; 57 | } 58 | --------------------------------------------------------------------------------