Skip to content

Instantly share code, notes, and snippets.

View shashirajraja's full-sized avatar
🏠
Working from home

Shashi Raj shashirajraja

🏠
Working from home
View GitHub Profile
Basic Git Syntax:
git [commands] [--flags] [arguments]
Examples:
git --version
git status
git status --short
git add .
Getting Help:
#include<iostream>
#include<queue>
using namespace std;
struct Node{
int data;
struct Node* left;
struct Node* right;
};
Node* newNode(int val){
Node *temp = new Node();
create table dept(
deptno number(2,0),
dname varchar2(14),
loc varchar2(13),
constraint pk_dept primary key (deptno)
);
create table emp(
empno number(4,0),
ename varchar2(10),
ANDROID with Kotlin & Flutter
ANDROID :
- Android is a platform consist
- Operating System
- Middleware
- Key Applications
Android Components : [ Core Android - 36 days ]
- Activity
//MERGE SORT
#include<stdio.h>
#include<conio.h>
int merge(int a[],int lower1,int upper1,int lower2,int upper2)
{
int p,q,j,n,d[100];
p=lower1;
q=lower2;
n=0;
while((p<=upper1) && (q<=upper2))