Pages

Largest Collection of Code

no image

Append insert CharacterData In XML Java

0 comments
import  java.io.File; import  javax.xml.parsers.DocumentBuilderFactory; import  org.w3c.dom.CDATASection; import  org.w3c.dom.CharacterData... Read more »
no image

substring from CharacterData in XML JAVA

0 comments
import  java.io.File; import  javax.xml.parsers.DocumentBuilderFactory; import  org.w3c.dom.CDATASection; import  org.w3c.dom.CharacterData... Read more »
no image

Data to Character Data in XML-CDATA

0 comments
import  java.io.File; import  javax.xml.parsers.DocumentBuilderFactory; import  org.w3c.dom.CDATASection; import  org.w3c.dom.CharacterData... Read more »
no image

Titled Pane Accordin in Java

0 comments
import  javafx.application.Application; import  javafx.scene.Group; import  javafx.scene.Scene; import  javafx.scene.control.Accordion; imp... Read more »
no image

Decimal binary conversion C Program

0 comments
#include <stdio.h>   int main() { int n, c, k;   printf("Enter an integer in decimal number system\n"); scanf("... Read more »
no image

C program to find hcf lcm using function

0 comments
#include <stdio.h>   long gcd(long, long);   int main() { long x, y, hcf, lcm;   printf("Enter two integers\n"); sca... Read more »
no image

C program to find hcf and lcm using recursion

0 comments
#include <stdio.h>   long gcd(long, long);   int main() { long x, y, hcf, lcm;   printf("Enter two integers\n"); sca... Read more »
no image

c program to find hcf and lcm

0 comments
C program to find hcf and lcm: The code below finds highest  common factor and least common multiple of two integers.  HCF is also known ... Read more »
no image

Factorial program in c using recursion

0 comments
This is Factorial program in c using recursion Mechanism #include<stdio.h>   long factorial(int);   int main() { int num; l... Read more »
no image

Factorial program in c using function

0 comments
This is Factorial program in c using function.This is another method of finding a factorial ..Factorial can be found out using for loop w... Read more »
no image

Factorial program in c using for loop

0 comments
This program will find out the factorial of the number entered by the user #include <stdio.h>   int main() { int c, n, fact =... Read more »
no image

Add digits using recursion C Program

0 comments
This Program will add numbers using recursion #include <stdio.h>   int add_digits(int);   int main() { int n, result;   scanf... Read more »
no image

add digits of number in c program

0 comments
C program to add digits of a number: Here we are using  modulus operator(%) to extract individual digits of number and adding them. ... Read more »
no image

c program to check leap year

0 comments
c program to check leap year: c code to check leap year, year will be entered by the user #include <stdio.h>   int main() { int... Read more »
no image

Check vowel using switch statement

0 comments
C Program to check whether entered alphabet is vovel or not using Swith Statement  #include <stdio.h>   main() { char ch;   pr... Read more »
no image

c program check input alphabet is a vowel or not

0 comments
This code checks whether an input alphabet is a vowel or not. Both lower-case and upper-case are checked. #include <stdio.h>   ma... Read more »
no image

Find odd or even using conditional operator

0 comments
#include<stdio.h>   main() { int n;   printf("Enter an integer\n"); scanf("%d",&n);   n%2 == 0 ?... Read more »
no image

C program to check odd or even without using bitwise or modulus operator

0 comments
#include<stdio.h>   main() { int n;   printf("Enter an integer\n"); scanf("%d",&n);   if ( (n/2)... Read more »
no image

C program to check odd or even using bitwise operator

0 comments
#include<stdio.h>   main() { int n;   printf("Enter an integer\n"); scanf("%d",&n);   if ( n ... Read more »
no image

C program to check odd or even using modulus operator

0 comments
#include<stdio.h>   main() { int n;   printf("Enter an integer\n"); scanf("%d",&n);   if ( n%2 =... Read more »
no image

C program to perform addition, subtraction, multiplication and division

0 comments
#include <stdio.h>   int main() { int first, second, add, subtract, multiply; float divide;   printf("Enter two intege... Read more »
no image

c program for Fibonacci series

0 comments
This is a simple c program for Fibonaci Seris You can use it for learning #include <stdio.h>   main() { int n, first = 0, sec... Read more »
no image

c program print integer

0 comments
This c program first inputs an integer and then prints it.  Input is done using scanf function and number is printed on screen using pri... Read more »
no image

Hello world program in c

0 comments
We may store "hello world" in a character array and then print it. #include <stdio.h>   int main() { char string[] = ... Read more »
no image

C hello world example

0 comments
#include <stdio.h>   int main() { printf("Hello world\n"); return 0; } Read more »
no image

C program to add two numbers repeatedly

0 comments
#include<stdio.h>   main() { int a, b, c; char ch;   while(1) { printf("Enter values of a and b\n"); ... Read more »
no image

C Progam for Addition without using third variable

0 comments
#include<stdio.h>   main() { int a = 1, b = 2;   /* Storing result of addition in variable a */   a = a + b;   /* Not re... Read more »
no image

C Progam to add two Numbers using Functions

0 comments
This is a simple program to add two Numbers # include < stdio.h > # include < stdio.h > # include < conio.h > void... Read more »
 
Posts RSSComments RSSBack to top
© 2011 99Coding ∙ Designed by BlogThietKe
Released under Creative Commons 3.0 CC BY-NC 3.0