Can someone explain the concept of pre and post increment in C?
Please explain ++i and i++ use with example. It confuses me many times, which one increment its value first and when assigned?
- 4206 Views
- 3 Answers
3 Answers
-
-
- 12 Jun
- 0 Comment
-
-
++i is pre increment operator and i++ is a post increment operator in ++i first i is incremented to i+1 and its value is fetched . in i++ first value of i is fetched then i is incremented to i+1 after execution i.e. incremented value effect can be seen in next statement . let us consider an example where int i=10; int j =i++; //j will contain value of =10 and i will we incremented to 11 vs int j = ++i; // i will be incremented first and then its value will be assigned to j i.e j will contain 11.
-
- 02 Apr
- 0 Comment
-
- Write a program to store 5 elements in the array P and 3 elements in the array Q.Produce a third array R after joining the array P and Q.Display the resultant array.
- Лучшие игры 3d на Андроид
- How will you print “Hello World” without semicolon?
- What is difference between C C++ and Java?
- What is the difference between return 0 and return 1?
- What is the eligibility criteria for cracking the C Progamming Exam 2018?
- Бесплатные программы
- What is C language?
- What does a person require to opt C programming as a career?
- What are preprocessor directives in c language?
Practice Mock Test
c programming
Pre and Post increments are operators used in c language.In Pre increment operator(++a),the value of the variable is modified(incremented) first and then its value is assigned to the variable.egbr /int a=2;br /++a;br /printf("%d",a);br /Output:3br /In post increment operator(a++),the value is first assigned to its variable and then modified(increased).br /eg. int a=2;br /a++;br /printf("%d",a);br /Output:2