Search This Blog

UI/UX Design | Web Development | Mobile Application Development

Whether you need UI/ UX design, web development services, or mobile app development services, Qaabil Digitals will be more than happy to help you. We work with top software developers, designers, and project managers. We tailor our services to suit your exact needs. We closely look at your company, listen to your story, and bring about the best ideas and solutions that can help you drive solid results. We don’t just produce work that works. We produce work that matters. Get a quote now Or Talk to us

Monday 13 June 2011

Using psot/prefix decrement operator in java program


class apdecrement
{
public static void main (String arg[])
{
int a=97,b=23;
int c,d;
c=--a;
d=b--;
System.out.println ("\n\t a = "+a);
System.out.println ("\n\t b = "+b);
System.out.println ("\n\t c = "+c);
System.out.println ("\n\t d = "+d);
}
}


Note:
          After executing this program you will see the decrement in the values of 'a' , 'b' and 'c' but value of 'd' will as it is. Just like post fix increment increases value after it is used, post fix decrement also do so but it decreases the value by 1 after it is used.

No comments:

Post a Comment

Share