Learn C Programs

Tabs

  • Home
  • List of C Programs
  • Functions
  • Simple c Program

Friday, 10 March 2017

List of C Programs

-c program to sort an array using function

-Even And Odd Numbers

-c program the division operation

-Sum of Series 1+2+3+..+n

-C in size operator


-c program for pre decrement and post decrement

-c program to implement simple if-else in c

-Simple if statement

-Calculate Simple interest


-Swap the values of two Variables using three variables

-Two Variable of sum

-Palindrome number using for loop

-Fibonacci Series using while loop




Posted by Unknown at 09:13
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

No comments:

Post a Comment

Newer Post Older Post Home
Subscribe to: Post Comments (Atom)

Popular Posts

  • User defined Functions
    Function Declarations   Prototype to perform this task, a user-defined function add Numbers () is defined. #include <stdio.h>...
  • C in size operator
    Program : #include<stdio.h> void main() {   printf("\n size of int is: %d",sizeof(int));   printf("\n size of fl...
  • List of C Programs
    - c program to sort an array using function - Even And Odd Numbers - c program the division operation - Sum of Series 1+2+3+.....
  • Simple c Program
  • c program the division operation
    Program : #include<stdio.h> #include<conio.h> int main() {      int x,y;      int result1,result2;      printf("\n...
  • c program to sort an array using function
    Program : #include<stdio.h> #include<conio.h> #define MAX 100     // maximum no of elements of array int sortArray(int); ...
  • c program for pre increment and post increment
    Program : #include<stdio.h> main() {  int i=10,j;  j=i++; /* j value 10 , i value 11*/  /*post increment*/  pr...
  • Even And Odd Numbers
    Two methods available in c programing... #include <stdio.h> int main() {     int i;     printf("Enter an integer: ...
  • Functions
    Function Definition:  Function is a group of statements which performs a specific task. It is also known as Sub-routine or Procedure or ...
  • c program for pre decrement and post decrement
    Program : #include<stdio.h> main() {   int i=20,j; j=i--;          /* j value 20 , i value 21*/  /*post decrement*/  print...

Like Us

Simple theme. Powered by Blogger.