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
Something about c++

Something about c++

 Something about C++... C++ is a middle-level programming language develop by Bjarne Stroustrup  in 1979  at Bell Labs. C++ is regarde...
Read More
Memory allocation in c programmming

Memory allocation in c programmming

Memory allocation in c... C  provide features to manual managements of memory, by   using this features we can manage memory at run...
Read More
file management in c programming

file management in c programming

File management in c programming... In  C support a numbers of function that have the ability to perform basic file operations, in ...
Read More
 Pointers in C programming

Pointers in C programming

  Pointers in C...      In this section contains example programs demonstrating            the use of pointers.  Pointers in C la...
Read More
structures and union in c programming

structures and union in c programming

 Structures in c... In A structure can be considered as a template used for defining a collection of variables under a single name.  ...
Read More
User define function in c programming

User define function in c programming

C allows you to define functions according to your need. These functions are known as user-defined functions.  For example:  let, you ...
Read More
character array and string in c programming

character array and string in c programming

character array and string in c... string is a sequence of characters that is uses as a single data item and terminated by null charact...
Read More