Skip to content
  • Contact Us
  • Privacy Policy
  • About Us
  • Home
  • South Indian Actress Photo Gallery
    • Malayalam Actress
    • Tamil Actress
    • Kannada & Telegu Actress
  • Trending
  • Movie Reviews
  • OTT Releases
  • Movie Trailers
  • Programing
    • Java
    • C
    • C++
  • Service Provider
  • Civil_World
  • How To
  • Tricks And Tips
    • Tricks
    • Tips
  • Germany
    • Things to know in Germany
  • AI Websites

Updates

Madona Sebastian

Aarsha Baiju

Srinidhi Shetty

Ahana Krishna Kumar

Saniya Iyappan

Trisha

Esther Anil

Malavika C Menon

Krithi Shetty

Kayadu Lohar

Anupama Parameswaran

Anju Kurian

Malavika Mohanan

Nayanthara Chakravarthy

Iswarya Menon

Meenakshi Unnikrishnan

Navani Devanand

Akhila Bhargavan

Priya Varrier

Swasika

Malavika Manoj

Honey Rose

Reba Monica John

Anikha Surendran

Saniya Babu

Miya

Sreeleela

Aditi Ravi

Mamitha Baiju

Pooja Hedge

Meenaakshi Chaudhary

Nandana Varma

Ivana

Meenakshki Dinesh

Ananya

Poonam Bajwa

PlusDigit

PlusDigit

  • Contact Us
  • Privacy Policy
  • About Us
Friday, June 20, 2025
  • Home
  • South Indian Actress Photo Gallery
    • Malayalam Actress
    • Tamil Actress
    • Kannada & Telegu Actress
  • Trending
  • Movie Reviews
  • OTT Releases
  • Movie Trailers
  • Programing
    • Java
    • C
    • C++
  • Service Provider
  • Civil_World
  • How To
  • Tricks And Tips
    • Tricks
    • Tips
  • Germany
    • Things to know in Germany
  • AI Websites

Category: C

C Programing

Programe to check wether the given word is anagram or not in C

September 7, 2013

#include <stdio.h> int check_anagram(char [], char []); int main() { char a[100], b[100]; int flag; printf(“Enter first stringn”); gets(a); printf(“Enter second stringn”); gets(b); flag = check_anagram(a, b); if (flag == … Read More

check wether the given word is anagram or not in CPrograme to check wether the given word is anagram or not in C
C Programing

Program to read a file in C

September 7, 2013

#include <stdio.h> #include <stdlib.h> int main() { char ch, file_name[25]; FILE *fp; printf(“Enter the name of file you wish to seen”); gets(file_name); fp = fopen(file_name,”r”); // read mode if( fp … Read More

Program to read a file in Cread a file in C
Program to copy files in C
C Programing

Program to copy files in C

September 7, 2013

#include <stdio.h> #include <stdlib.h> int main() { char ch, source_file[20], target_file[20]; FILE *source, *target; printf(“Enter name of file to copyn”); gets(source_file); source = fopen(source_file, “r”); if( source == NULL ) … Read More

copy files in CProgram to copy files in C
Program to merge two files in C
C Programing

Program to merge two files in C

September 7, 2013

#include <stdio.h> #include <stdlib.h> int main() { FILE *fs1, *fs2, *ft; char ch, file1[20], file2[20], file3[20]; printf(“Enter name of first filen”); gets(file1); printf(“Enter name of second filen”); gets(file2); printf(“Enter name … Read More

merge two files in CProgram to merge two files in C
Program to delete a file in C
C Programing

Program to delete a file in C

September 7, 2013

#include<stdio.h> main() { int status; char file_name[25]; printf(“Enter the name of file you wish to deleten”); gets(file_name); status = remove(file_name); if( status == 0 ) printf(“%s file deleted successfully.n”,file_name); else … Read More

delete a file in CProgram to delete a file in C
Program to add two complex numbers in C
C Programing

Program to add two complex numbers in C

September 7, 2013

#include <stdio.h> struct complex { int real, img; }; int main() { struct complex a, b, c; printf(“Enter a and b where a + ib is the first complex number.n”); … Read More

add two complex numbers in CProgram to add two complex numbers in C
Program to insert an element in an array in C
C Programing

Program to insert an element in an array in C

September 7, 2013

#include <stdio.h> int main() { int array[100], position, c, n, value; printf(“Enter number of elements in arrayn”); scanf(“%d”, &n); printf(“Enter %d elementsn”, n); for (c = 0; c < n; … Read More

insert an element in an array in CProgram to insert an element in an array in C
Program for binary search in C
C Programing

Program for binary search in C

September 7, 2013

#include <stdio.h> int main() { int c, first, last, middle, n, search, array[100]; printf(“Enter number of elementsn”); scanf(“%d”,&n); printf(“Enter %d integersn”, n); for ( c = 0 ; c < … Read More

binary search in CProgram for binary search in C
Program to add two numbers using pointers in C
C Programing

Program to add two numbers using pointers in C

September 7, 2013

#include <stdio.h> int main() { int first, second, *p, *q, sum; printf(“Enter two integers to addn”); scanf(“%d%d”, &first, &second); p = &first; q = &second; sum = *p + *q; … Read More

add two numbers using pointers in CProgram to add two numbers using pointers in C
Program to add digits of a number in C
C Programing

Program to add digits of a number in C

September 7, 2013

#include <stdio.h> int main() { int n, sum = 0, remainder; printf(“Enter an integern”); scanf(“%d”,&n); while(n != 0) { remainder = n % 10; sum = sum + remainder; n … Read More

add digits of a number in CProgram to add digits of a number in C
Program to print inverted half pyramid using * in C
C Programing

Program to print inverted half pyramid using * in C

September 7, 2013

#include &lt;stdio.h&gt; int main() { int i,j,rows; printf(“Enter the number of rows: “); scanf(“%d”,&rows); for(i=rows;i>=1;–i) { for(j=1;j<=i;++j) { printf(“* “); } printf(“n”); } return 0; } Output * * * … Read More

print inverted half pyramid using * in CProgram to print inverted half pyramid using * in C
Program to print half pyramid as using * in C
C Programing

Program to print half pyramid as using * in C

September 7, 2013

#include <stdio.h> int main() { int i,j,rows; printf(“Enter the number of rows: “); scanf(“%d”,&rows); for(i=1;i<=rows;++i) { for(j=1;j<=i;++j) { printf(“* “); } printf(“n”); } return 0; } Output * * * … Read More

print half pyramid as using * in CProgram to print half pyramid as using * in C
Program to find Hcf/lcm of a given number in C
C Programing

Program to find Hcf/lcm of a given number in C

August 4, 2013

          #include stdio.h int main() { int a, b, x, y, t, gcd, lcm; printf(“Enter two integersn”); scanf(“%d%d”, &x, &y); a = x; b = y; … Read More

Hcf/lcmProgram to find Hcf/lcm of a given number in C
Floyeed Pattern in C
C Programing

Floyeed Pattern in C

August 4, 2013

        #include stdio.h int main() { int n, i, c, a = 1; printf(“Enter the number of rows of Floyd’s triangle to printn”); scanf(“%d”, &n);

Floyeed PatternFloyeed Pattern in C

Recent Post

  • Madona Sebastian
  • Aarsha Baiju
  • Srinidhi Shetty
  • Ahana Krishna Kumar
  • Saniya Iyappan
  • Trisha
  • Esther Anil
  • Malavika C Menon
  • Krithi Shetty
  • Kayadu Lohar
Proudly powered by WordPress | Theme: FreeNews | By ThemeSpiral.com.
Privacy Policy