How to build a Zend Framework 2 web application in simple steps
How to build a Zend Framework 2 web application in simple steps
How to build a Zend Framework 2 web application in simple steps
Lets Get Updated With Technews & Technology
- sequence of instruction written for specific purpose
- Like program to find out factorial of number
- Can be written in higher level programming languages that human can understand
- Those programs are translated to computer understandable languages code gceo like bis
- Most prior programming language was 'C’
- Compiler will convert higher level language code to lower Ian language are called syntax binary Code
- Rules & format that should" be followed while writing program . Consider program to print Hello!" on screen
void main()
{
printf("Hello!");
}
Void main() function an entry point of compilationPart within two curly brackets, is body of functionPrintf(), function to print sequence of characters on screen
- Data types are like int, float, double
- Keyword are like printf, main, if, else
- The words that are pre-defined for compiler are keyword
- Keywords can not be used to define variable
- We can define variable of data type c Like int a; then 'a' will hold value of type int and is called variable
- Programs can have different type of statements like conditional statements
- Conditional statements are for checking some condition
- Conditional Statement
- Conditional statements controls the sequence of statements, depending on the condition
- Relational operators allow comparing two values.
1. == is equal to
2.! = not equal to
3. < less than
4. > greater than
5. <= less than or equal to
6. >= greater than or equal to