RANA's Blog
Friday, 28 February 2014
Write a C program for implementing the Increment and Decrement operators
Write a C program for implementing the Increment and Decrementoperators
Source code:
#include
<stdio.h>
int
main
()
{
int
c
=
2
,
d
=
5
;
printf
(
"%d\n"
,
c
++);
printf
(
"%d"
,++
c
);
printf
(
"%d\n"
,
d
--);
printf
(
"%d"
,--d);
return
0
;
}
Output:
2
4
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment