Print "Hello World" in C#
using System; namespace HelloWorldApp { class Hello { static void Main( string [] args) { ...
Hello guys, I am Dreek. In this blog, I will post programs in various languages which will be useful for students.
using System; namespace HelloWorldApp { class Hello { static void Main( string [] args) { ...
using System; namespace HelloWorldApp { class Hello { static void Main( string [] args) { ...
#include <stdio.h> #define N 100 void sort(int [],int); main() { int i,n; int a[N]; printf("Enter the size of the ar...
#include <stdio.h> #define N 100 void quicksort(int [],int,int); int partition(int [],int,int); main() { int i,n; int a[N]...
#include <stdio.h> int power(int,int); main() { int x,y,c; printf("Enter the value of x\n"); scanf("%d...
#include <stdio.h> #include<string.h> #define N 50 void STRING_MATCH(char t[],char p[]) { int tlen,plen,i,j,limit; pl...
#include <stdio.h> #include<math.h> void nqueen(int,int); int place(int,int); int x[10]; main() { int n; printf(...
#include <stdio.h> #define N 100 void mergesort(int [],int,int); void merge(int [],int,int,int); main() { int i,n; int a[N...