Posts

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(); }

Variables

Image
Variable DEFINITION: Variable is a value   or quantity which may   vary during   program execution is called   a Variable. Each variable has specific memory location in Memory Unit, where Numerical values or characters can be stored. We can also call a variable as an Identifier i.e., they identify the varying quantities and stores them in particular memory location. Example: Sum=a+b; In the above example there are “a” and “b” two Identifiers/variables representing two separate quantities in two distinct(different) memory locations. Similarly Sum is also an variable   name which used to store the sum of two numbers i.e.,(addition of a and b).                                                 MEMORY                                                   variable a variable  b variable  Sum               ↔↔↔↔↔↔ memory                           locations Rules for Naming Variables in C Ø   A variable name must consist o

Data types in C Programming

Image
Data types in C Language Hello Friends Welcome to my blog sstech today we will study about data types in C language,contents in this  blog is not fully expressed by me some of the topics are referenced by an Internet and other tutorials. Data types specify how we enter data into our programs and what type of data we enter. C language has some predefined set of data types to handle various kinds of data that we can use in our program. These datatypes have different storage capacities. C language supports 2 different type of data types: Primary data types: These are fundamental data types in C namely integer( int ), floating point( float ), character( char ) and  void . Derived data types: Derived data types are nothing but primary datatypes but a little twisted or grouped together like  array ,  stucture ,  union  and  pointer . These are discussed in details later. Data type determines the type of data a variable will hold. If a variable  x  is declared as  int . it