ATLANTIS NEWS NETWORK

ATLANTIS NEWS NETWORK ANN HD NEWS ANN NEWS ANN HD News http://www.annhd.com/2017/08/tribute-to-ahmed-faraz-1931-2008.html http://www.annhd.com/2017/08/ispr-welcome-t20-teams-in-pakistan.html Want to join us ATLANTIS NEWS NETWORK ANN HD NEWS ANN NEWS ANN HD News http://www.annhd.com/2017/08/tribute-to-ahmed-faraz-1931-2008.html http://www.annhd.com/2017/08/ispr-welcome-t20-teams-in-pakistan.html Want to join us ATLANTIS NEWS NETWORK ANN HD NEWS ANN NEWS ANN HD News http://www.annhd.com/2017/08/tribute-to-ahmed-faraz-1931-2008.html http://www.annhd.com/2017/08/ispr-welcome-t20-teams-in-pakistan.html Want to join us

Change Your Mouse Cursor Into Pakistan Flag

Salam To All & Happy Independence Day !! 🙂 To day I am Gonna Tell You That How To Change Your Cursor Into Pakistan Flag !!It’s Very Easy Follow These Steps RespectivelyFist Download Pakistan Cursor Click Here To Download(It’s Not Too Large It’s Just 21Kbs)1. Save Attached File in your PC 2. Go to Start menu +Continue reading “Change Your Mouse Cursor Into Pakistan Flag”

Pakistan Flag using C++ : For Loop

‪#‎include‬ #include void main(){clrscr();int x=20,z=x-14;for(int i=z-z;i<=x+x;i++){ cout<<"*";}cout<<endl;for(int j=z-z;j<=x;j++){cout<<"ÛÛÛÛÛÛÛÛÛÛ\t\t\t\t*\n";}for(int k=z-z;k<=x+x;k++){ cout<<"*";}gotoxy(x,z++); {cout<<" _**";}gotoxy(x,z++); {cout<<" *";}gotoxy(x,z++); {cout<<" * * ";}gotoxy(x,z++); {cout<<" ** ** **";}gotoxy(x,z++);{cout<<" *** *** ";}gotoxy(x,z++);{cout<<" ** * *";}gotoxy(x,z++);{cout<<" * ";}gotoxy(x,z++);{cout<<" *";}gotoxy(x,z++);{cout<<" ~**";}gotoxy(1,24);{for(int c=1;c<=21;c++)cout<<"**\n";}getch();}

Calculator using PHP and Css 3 ,html 5

Calculator Using PHP… Calculator span{background-color: lightgreen;border: 2px solid black;textcolor: red;}div input{    background-color: lightgrey;    width: 320px;    padding: 5px;    border: 1px solid navy;    margin: 25px;}div button{    background-color: #FFFFF0;    width: 360px;    height: 40px;    padding: 5px;    border: 2px solid green;  }div td{    background-color:#FFEBFF;    width: 200px;    height:Continue reading “Calculator using PHP and Css 3 ,html 5”

Graph Adjacency Matrix using 2D-Array

#include #include void  main( ) { int i, j ,siz; clrscr(); int G[100][100]; cout<<" Enter the size of sequre Metrix  \n";cout<<" Enter Rows siz :"; cin>>i; cout<<" \n Enter Colums siz : "   ; cin>>j; siz=j;  for(i=0 ; i < siz  ; i++) for(j=0 ; j< siz ; j++) { G[i][j]=0; } int a; cout<<" \n Enter the No of Edges: "; cin>>a; cout<<" \n Enter the exact location whereContinue reading “Graph Adjacency Matrix using 2D-Array”

Graph Adjacency List using Link list

#include#include struct Adj_list{ int dest;struct Adj_list *next; };struct Adjlist{struct Adj_list *head; }; class Graph{int v;int i;public:struct Adjlist *array; Graph(int v){this->v=v;array=new Adjlist[v];array[i].head=NULL;} Adj_list *newAdj_list(int dest){ Adj_list *newnode =new Adj_list;newnode->dest=dest;newnode->next=NULL;return newnode;} void addedge(int src,int dest){ Adj_list *newnode=newAdj_list(dest); newnode->next=array[src].head;array[src].head=newnode;newnode=newAdj_list(src);newnode->next=array[dest].head;array[dest].head=newnode;} void display(){ int i;for(i=0; i< v; i++){Adj_list *pcrawl=array[i].head;cout<<" \n Adjancy List of vertex  "<<i<<" head"; while(pcrawl){cout< “<dest;pcrawl=pcrawl->next; }cout<<endl;} }};voidContinue reading “Graph Adjacency List using Link list”

Scan string using SCASB : Assembly code

include irvine32.inc .datasource byte “my name is usman”,0 msg1 byte “String to b compare : “,0 msg3 byte “Latter is Found : “,0msg4 byte “Latter Not Found : “,0 .codeMain proccall clrscrcall crlfmov edx,offset msg1call writestringcall crlf call crlfmov edx,offset sourcecall writestringcall crlf ;————————— mov edi,offset sourcemov al,’g’mov ecx,lengthof sourcecldrepne scasbje L1jne L2;———————- L1:call crlfmovContinue reading “Scan string using SCASB : Assembly code”

Compare string using CMPSB : Assembly Code

include irvine32.inc .datasource byte “i my name is usman”,0dest   byte “i am not a khan….”,0 msg1 byte “1st String: “,0msg2 byte “2nd string: “,0 msg3 byte “String name Dest is Large : “,0msg4 byte “String name Dest is Small : “,0msg5 byte “String :both sorce & Dest are Equal : “,0 .codeMain proccall clrscrcallContinue reading “Compare string using CMPSB : Assembly Code”