Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~266 People Reached
About Me

All life is an experiment. The more experiments you make the better. ^_^

Interests
Playing computer games Reading manga Tennis Badminton Moiling
Favorite Forums
Favorite Tags
c x 2
c++ x 1
Member Avatar for johnloiebert

[code] #include<stdio.h> #include<conio.h> void main(void) { int a1,a2,a3,a4,a5; clrscr(); scanf("%d%d%d%d%d",&a1,&a2,&a3,&a4,&a5); printf("%d%d%d%d%d",a5,a4,a3,a2,a1); getch(); } [/code]

Member Avatar for vinitmittal2008
0
127
Member Avatar for johnloiebert

1.function that orders the stored values of three characters.Suppose,for example,that c1,c2,and c3 are character variables having the values C,B,D respectively,then the function call order_chars(&c1,&c2,&c3)should cause the stored values of c1,c2,and c3 to be B,C and D respectively 2.Write a program that reads n integers into an array, and then prints …

Member Avatar for jonsca
-1
139