Launch the instance and connect with ssh.
##Update the server
sudo yum update
##Install php and MySQL packages
Google alerts is a way to manage your content by subscribing to keywords. Here is an example on how to make that google alert with php. | |
Get the feed url and parse the feed. There won't be any feed available as soon the alert is created. | |
------------------------------------- | |
Copy composer.json and do composer update. | |
Add this to providers |
#include<stdio.h> | |
#include<stdlib.h> | |
typedef struct _node{ | |
int data; | |
struct _node *next; | |
} node; | |
typedef node circularlyLinkedList; |
#include<stdio.h> | |
void swap(char **s, int low, int high){ | |
char temp; | |
temp = (*s)[low]; | |
(*s)[low] = (*s)[high]; | |
(*s)[high] = temp; | |
// printf("%s\n",*s); |
#include<stdio.h> | |
int main(){ | |
int numberOfProblems, problemThatCanBeSolved = 0, countOfPeople; | |
char line[1024]; | |
char * str; | |
scanf("%d",&numberOfProblems); |
Launch the instance and connect with ssh.
##Update the server
sudo yum update
##Install php and MySQL packages
/*** | |
This program is similar to reversing a linked list. I have done anyway for the heck of it! | |
****/ | |
#include<stdio.h> | |
#include<stdlib.h> | |
typedef struct _node { | |
int value; | |
struct _node * next; |
#include<stdio.h> | |
#include<stdlib.h> | |
typedef struct _node{ | |
int value; | |
struct _node * next; | |
} node; | |
typedef node linkedlist; |
#include<stdio.h> | |
#include<stdlib.h> | |
#define MaxData (32767) | |
typedef struct _bheap{ | |
int Capacity; | |
int Size; | |
int *Elements; |
#include<stdio.h> | |
#include<stdlib.h> | |
/*********************** TREE ************************/ | |
typedef struct _tnode{ | |
int value; | |
struct _tnode *left; | |
struct _tnode *right; | |
} tnode; |
#include<stdio.h> | |
#include<stdlib.h> | |
/********* | |
In this program we store the parent of the node too. | |
We go from node to find the corresponding parent. | |
***************/ | |
/*********************** TREE ************************/ | |
typedef struct _tnode{ |