Posts

Showing posts from May, 2019

Web Programming

Friends Today We will see about Web Programming,In these days Web Development is becoming more popular so learning web programming is also an  important . We will See Some Basic Things brief Introduction of Web Programming. Definition Of Web Programming Web programming refers to the writing, markup and coding involved in Web development, which includes Web content, Web client and server scripting and network security. The most common languages used for Web programming are XML, HTML, JavaScript, Perl 5 and PHP. Web programming is different from just programming, which requires interdisciplinary knowledge on the application area, client and server scripting, and database technology. Basic Tags Of HTML <html> <head> <body> <title> <h1> to <h6> <p> <img> <a href> <ul> <ol> <form> <table> <br> <html> What is HTML? HTML is the standard markup language for creating Web p

Even or Odd Program in C

#include<stdio.h> #include<conio.h> void main()\ { int n1,r; printf("Type the Number to be checked\n"); scanf("%d",&n1); r=n1%2; if(r==0) printf("The Number is Even"); else printf("\n The Number is Odd"); getch(); }

C Program for Smallest of three numbers

#include<stdio.h> #include<conio.h> void main() { int n1,n2,n3,small; printf("Enter 3 Numbers"); scanf("%d%d%d",&n1,&n2,&n3); small=(n1<n2) ? n1 : n2; small=(small<n3) ? small : n3; printf("Smallest of three no's is=%d\n",small); getch(); }