Hello World in PHP Programming
April 5th, 2012
Padhiyar Akash Hello World in PHP Programming
<?php echo "Hello World"; echo "Call 97228 21654 For PHP Training Ahmedabad "; ?>
C Program for Searching Element from Array
November 15th, 2011
Dhara Shah C Program for Searching Element from Array
Write a C Program that will search an element in the array. If the element is found the index of the element is printed otherwise give an appropriate message. We can search the element using the following code.
C Program to Sort an Array
November 15th, 2011
Dhara Shah C Program to Sort an Array
Sort an array means to arrange all the values of an array in ascending order. The following is a C Program that will accept 5 elements from the user and display them in a Sorted Order.
Traverse a ArrayList in C
November 15th, 2011
Dhara Shah Traverse a ArrayList in C
Traverse ArrayList means printing the contents of a ArrayLsit. The following is a C Program that will Traverse the values of an Array.
C Language Program : Convert Days into Year using Modulo Operator
November 7th, 2011
Padhiyar Akash C Language Program : Convert Days into Year
Write a c program to convert days into year.if user enter 366 days then output will be 1 year 1 days . if user enter 360 days then output will 0 year 360 days.
Leap Year Program in C Language
November 7th, 2011
Padhiyar Akash Write a C Program to check year is Leap year or not.
#include<stdio.h>
#include<conio.h>
main()
{
int Y;
clrscr();
printf("Enter the Year:");
scanf("%d",&Y);
if(Y%4==0)
{
printf("Year is a Leap year");
}
else
{
printf(" Year is a Not a Leap year");
getch();
}
}





