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