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: Programing

Program to check armstrong number in Java
Java Programing

Program to check armstrong number in Java

September 27, 2013

import java.util.*; class ArmstrongNumber { public static void main(String args[]) { int n, sum = 0, temp, r; Scanner in = new Scanner(System.in); System.out.println(“Enter a number to check if it … Read More

check armstrong number in JavaProgram to check armstrong number in Java
Program to print Floyd’s triangle in Java
Java Programing

Program to print Floyd’s triangle in Java

September 27, 2013

import java.util.Scanner; class FloydTriangle { public static void main(String args[]) { int n, num = 1, c, d; Scanner in = new Scanner(System.in); System.out.println(“Enter the number of rows of floyd’s … Read More

Floyd's triangle in JavaProgram to print Floyd's triangle in Java
Program to reverse a string in Java
Java Programing

Program to reverse a string in Java

September 27, 2013

import java.util.*; class ReverseString { public static void main(String args[]) { String original, reverse = “”; Scanner in = new Scanner(System.in); System.out.println(“Enter a string to reverse”); original = in.nextLine(); int … Read More

Program to reverse a string in Java
Program to compare two strings in Java
Java Programing

Program to compare two strings in Java

September 27, 2013

import java.util.Scanner; class CompareStrings { public static void main(String args[]) { String s1, s2; Scanner in = new Scanner(System.in); System.out.println(“Enter the first string”); s1 = in.nextLine(); System.out.println(“Enter the second string”); … Read More

compare two strings in JavaProgram to compare two stringsProgram to compare two strings in Java
Program for linear search in Java
Java Programing

Program for linear search in Java

September 27, 2013

import java.util.Scanner; class LinearSearch { public static void main(String args[]) { int c, n, search, array[]; Scanner in = new Scanner(System.in); System.out.println(“Enter number of elements”); n = in.nextInt(); array = … Read More

Program for linear search in Java
Program for binary search in Java
Java Programing

Program for binary search in Java

September 27, 2013

import java.util.Scanner; class BinarySearch { public static void main(String args[]) { int c, first, last, middle, n, search, array[]; Scanner in = new Scanner(System.in); System.out.println(“Enter number of elements”); n = … Read More

Program for binary search in Java
Program to find all substrings of a string in Java
Java Programing

Program to find all substrings of a string in Java

September 27, 2013

import java.util.Scanner; class SubstringsOfAString { public static void main(String args[]) { String string, sub; int i, c, length; Scanner in = new Scanner(System.in); System.out.println(“Enter a string to print it’s all … Read More

Program to find all substrings of a string in Java
Program to display date and time, print date and time using java program
Java Programing

Program to display date and time, print date and time using java program

September 27, 2013

import java.util.*; class GetCurrentDateAndTime { public static void main(String args[]) { int day, month, year; int second, minute, hour; GregorianCalendar date = new GregorianCalendar(); day = date.get(Calendar.DAY_OF_MONTH); month = date.get(Calendar.MONTH); … Read More

print date and time using java programProgram to display date and time
Program to reverse number in Java
Java Programing

Program to reverse number in Java

September 27, 2013

import java.util.Scanner; class ReverseNumber { public static void main(String args[]) { int n, reverse = 0; System.out.println(“Enter the number to reverse”); Scanner in = new Scanner(System.in); n = in.nextInt(); while( … Read More

Program to reverse number in Java
Program to add two matrices in Java
Java Programing

Program to add two matrices in Java

September 27, 2013

import java.util.Scanner; class AddTwoMatrix { public static void main(String args[]) { int m, n, c, d; Scanner in = new Scanner(System.in); System.out.println(“Enter the number of rows and columns of matrix”); … Read More

Program to add two matrices in Java
Java program to transpose matrix
Java Programing

Java program to transpose matrix

September 27, 2013

import java.util.Scanner; class TransposeAMatrix { public static void main(String args[]) { int m, n, c, d; Scanner in = new Scanner(System.in); System.out.println(“Enter the number of rows and columns of matrix”); … Read More

Java program to transpose matrix
Java program to multiply two matrices
Java Programing

Java program to multiply two matrices

September 27, 2013

import java.util.Scanner; class MatrixMultiplication { public static void main(String args[]) { int m, n, p, q, sum = 0, c, d, k; Scanner in = new Scanner(System.in); System.out.println(“Enter the number … Read More

Java program to multiply two matrices
Java program for Bubble Sort
Java Programing

Java program for Bubble Sort

September 27, 2013

import java.util.Scanner; class BubbleSort { public static void main(String []args) { int n, c, d, swap; Scanner in = new Scanner(System.in); System.out.println(“Input number of integers to sort”); n = in.nextInt(); … Read More

Bubble SortJava program for Bubble SortJava program to bubble sort
Program to find largest of three numbers in Java
Java Programing

Program to find largest of three numbers in Java

September 27, 2013

import java.util.Scanner; class LargestOfThreeNumbers { public static void main(String args[]) { int x, y, z; System.out.println(“Enter three integers “); Scanner in = new Scanner(System.in); x = in.nextInt(); y = in.nextInt(); … Read More

largest of three numbers in JavaProgram to find largest of three numbers in Java
Java program to convert Fahrenheit to Celsius
Java Programing

Java program to convert Fahrenheit to Celsius

September 27, 2013

import java.util.*; class FahrenheitToCelsius { public static void main(String[] args) { float temperatue; Scanner in = new Scanner(System.in); System.out.println(“Enter temperatue in Fahrenheit”); temperatue = in.nextInt(); temperatue = (temperatue – 32)*5/9; … Read More

convert Fahrenheit to CelsiusJava program to convert Fahrenheit to Celsius
Program to find odd or even in Java
Java Programing

Program to find odd or even in Java

September 27, 2013

import java.util.Scanner; class OddOrEven { public static void main(String args[]) { int x; System.out.println(“Enter an integer to check if it is odd or even “); Scanner in = new Scanner(System.in); … Read More

find odd or even in JavaProgram to find odd or even in Java
Program to add two numbers in Java
Java Programing

Program to add two numbers in Java

September 27, 2013

import java.util.Scanner; class AddNumbers { public static void main(String args[]) { int x, y, z; System.out.println(“Enter two integers to calculate their sum “); Scanner in = new Scanner(System.in); x = … Read More

add two numbers in JavaProgram to add two numbers in Java
Program to print multiplication table in Java
Java Programing

Program to print multiplication table in Java

September 27, 2013

import java.util.Scanner; class MultiplicationTable { public static void main(String args[]) { int n, c; System.out.println(“Enter an integer to print it’s multiplication table”); Scanner in = new Scanner(System.in); n = in.nextInt(); … Read More

print multiplication table in JavaProgram to print multiplication table in Java
Program to check palindrome in Java
Java Programing

Program to check palindrome in Java

September 27, 2013

import java.util.*; class Palindrome { public static void main(String args[]) { String original, reverse=””; Scanner in = new Scanner(System.in); System.out.println(“Enter a string to check if it is a palindrome”); original … Read More

palindrome in JavaProgram to check palindrome in Java
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
To find Fibonacci Series in C++
C++ Programing

To find Fibonacci Series in C++

August 7, 2013

              #include stdio.h using namespace std; int main() { int range, first = 0, second = 1, fibonicci=0; cout << “Enter Range for Terms … Read More

Fibonacci Series in C++To find Fibonacci Series in C++
Multiplication table of a given number in C++
C++ Programing

Multiplication table of a given number in C++

August 5, 2013

              #include stdio.h int main() { int num, i = 1; printf(“n Enter any Number:”); scanf(“%d”, &num); printf(“Multiplication table of %d: n”, num); while … Read More

Multiplication tableMultiplication table of a given number in C++
Palindrome Program in C++
C++ Programing

Palindrome Program in C++

August 5, 2013

              #include iostream.h #include conio.h void main() {clrscr(); int a,b,c,d=0; cout<<“Enter number:”; cin>>a; b=a; do

Palindrome Program 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