c programme to add two number

c programme to add two number

//add two number #include<stdio.h> #include<conio.h>  void main() {     int num1,num2,sum; printf("Enter first number\...
Read More
C programme to print an number

C programme to print an number

// A c programme to print a no. #include<stdio.h> #include<conio.h>  void main() {     int number;      printf(...
Read More
hello world programme

hello world programme

//hello world programme... #include<stdio.h> #include<conio.h>  void main() {      printf("Hello world");...
Read More
Data structure and algorithm

Data structure and algorithm

Data structure is a method of organising large amount of data more efficiently so that any operation on that data become easy to underst...
Read More