Powered by Blogger.

Introduction To PHP -Variables

12:02 PM | Comments (0)

Variables There’s a simple metaphor that will help you understand what PHP variables are all about. Just think of them as little (or big) matchboxes! That’s right—matchboxes that you’ve painted...

Read more

Introduction to PHP -Basic Syntax

11:59 AM | Comments (0)

Basic SyntaxPHP is quite a simple language with roots in C and Perl, yet it looks more like Java. Itis also very flexible, but there are a few rules that...

Read more

Introduction To PHP -1

11:52 AM | Comments (0)

Your PHP program is responsible for passing back a clean file suitable for display in aweb browser. At its very simplest, a PHP document will output only HTML. To provethis,...

Read more

Introduction to PHP- The Structure of PHP

11:56 AM | Comments (0)

We’re going to cover quite a lot of ground in this section. It’s not too difficult, but I recommend that you work your way through it carefully, as it sets...

Read more

C program to add n numbers using array

5:57 AM | Comments (0)

#include <stdio.h>   int main() { int n, sum = 0, c, array[100];   scanf("%d", &n);   for (c = 0; c < n; c++) { scanf("%d", &array[c]); sum =...

Read more

C program to add n numbers

5:56 AM | Comments (0)

#include <stdio.h>   int main() { int n, sum = 0, c, value;   printf("\nEnter the number of integers you want to add :: "); scanf("%d", &n);   printf("\nEnter %d...

Read more

C program to find nCr using function

5:52 AM | Comments (0)

#include<stdio.h>   long factorial(int); long find_ncr(int, int); long find_npr(int, int);   main() { int n, r; long ncr, npr;   printf("\nEnter the value of n and r :: "); scanf("%d%d",&n,&r);...

Read more

to store decimal to binary conversion in a string

5:48 AM | Comments (0)

#include <stdio.h> #include <stdlib.h>   char *decimal_to_binary(int);   main() { int n, c, k; char *pointer;   printf("\nEnter an integer in decimal number system :: "); scanf("%d",&n);   pointer =...

Read more

Decimal to binary conversion

5:45 AM | Comments (0)

#include <stdio.h>   int main() { int n, c, k;   printf("\nEnter an integer in decimal number system ::"); scanf("%d", &n);   printf("\n%d in binary number system is ::", n);...

Read more

C program to find hcf and lcm using function

6:05 AM | Comments (0)

#include <stdio.h>   long gcd(long, long);   int main() { long x, y, hcf, lcm;   printf("Enter two integers :"); scanf("%ld%ld", &x, &y);   hcf = gcd(x, y); lcm =...

Read more

C program to find hcf and lcm using recursion

5:59 AM | Comments (0)

#include <stdio.h>   long gcd(long, long);   int main() { long x, y, hcf, lcm;   printf("Enter two integers :"); scanf("%ld%ld", &x, &y);   hcf = gcd(x, y); lcm =...

Read more

C program to calculate factorial using recursion

5:40 AM | Comments (0)

#include<stdio.h>   long factorial(int);   int main() { int n; long f;   printf("Enter an integer to find factorial :"); scanf("%d", &n);   if (n < 0) printf("Negative integers are...

Read more

C program to calculate factorial using function

5:31 AM | Comments (0)

#include <stdio.h>   long factorial(int);   int main() { int number; long fact = 1;   printf("Enter a number to calculate it's factorial :"); scanf("%d", &number);   printf("Factorial of %d...

Read more

C program to calculate factorial using loop

5:28 AM | Comments (0)

#include <stdio.h>   int main() { int c, n, fact = 1;   printf("Enter a number to calculate it's factorial:"); scanf("%d", &n);   for (c = 1; c <= n;...

Read more

C program to add digits of a number using modulus operator(%) to extract individual digits of number and adding them.

5:25 AM | Comments (0)

#include <stdio.h>   int main() { int n, sum = 0, remainder;   printf("Enter an integer :"); scanf("%d",&n);   while(n != 0) { remainder = n % 10; sum =...

Read more

C program to check leap year

12:56 AM | Comments (0)

#include <stdio.h>   int main() { int year;   printf("Enter a year to check if it is a leap year : "); scanf("%d", &year);   if ( year%400 == 0)...

Read more

C program to check whether input alphabet is a vowel or not using function

12:51 AM | Comments (0)

#include <stdio.h> int main() { char ch; int flg; printf("Input a character : "); scanf("%c",&ch); flg=check_vowel(ch); if(flg==1) printf("%c is a vowel",ch); else printf("%c is not a vowel",ch); return 0; }...

Read more

C program to check whether input alphabet is a vowel or not using switch

12:32 AM | Comments (0)

#include <stdio.h>   int main() { char ch;   printf("Input a character : "); scanf("%c", &ch);   switch(ch) { case 'a': case 'A': case 'e': case 'E': case 'i': case...

Read more