Search
 
SCRIPT & CODE EXAMPLE
 

C

pre and post increment in c

<?php
$a = 10;
echo 'Value of $a is :'.$a;
echo '<br />After Pre-increment value of $a ( i.e. ++$a ) is: '.++$a;
$a = 20;
echo '<br />Value of $a is :'.$a;
echo '<br />After Post-increment value of $a ( i.e. $a++ ) is: '.$a++;
$a = 30;
echo '<br />Value of $a is :'.$a;
echo '<br />After Pre-decrement value of $a ( i.e. --$a ) is: '.--$a;
$a = 40;
echo '<br />Value of $a is :'.$a;
echo '<br />After Post-decrement value of $a ( i.e. $a-- ) is: '.$a--;
?>
Comment

PREVIOUS NEXT
Code Example
C :: calendar in c 
C :: C Macros using #define 
C :: filing in c 
C :: jframe mittig positionieren 
C :: install zoom on ubuntu 
Dart :: How to create a round CheckBox in Flutter 
Dart :: flutter sleep 
Dart :: rounded raisedbutton in flutter 
Dart :: flutter sharedpreferences clear 
Dart :: Waiting for another flutter command to release the startup lock... 
Dart :: flutter switch color 
Dart :: dart round to 2 decimals 
Dart :: color of status bar flutter 
Dart :: flutter mediaquery 
Dart :: taskkill dart 
Dart :: flutter close dialog 
Dart :: flutter path join 
Dart :: dart to double 
Dart :: text field placeholder color flutter theme 
Dart :: flutter listview space between items 
Dart :: create publisher account on pub.dev 
Dart :: flutter list dynamic to list int 
Dart :: flutter button with icon and text 
Dart :: Dart set list spread operator 
Dart :: listview inside column flutter 
Dart :: dart combine maps 
Dart :: dart getter 
Dart :: dart filter by attribute 
Dart :: how to make unordered list in flutter 
Dart :: sliver persistent tabbar 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =