Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~5K People Reached
Favorite Tags
c x 2

5 Posted Topics

Member Avatar for DemonLady

[CODE=c]#include<stdio.h> #include<conio.h> main() { int num, rem=0; printf("\n Enter the number "); scanf("%d", &num); while(num>0) { rem = (rem * 10) + (num % 10); num = num / 10; } printf("\n Reverse of the number is %d", rem); getch(); } [/CODE]

Member Avatar for Ajini
0
3K
Member Avatar for noshdb
Member Avatar for c0ld sn1ff3r

Hi, I need to develop a C# console application which implements stack as a circular queue. I've written the code to use stack as a simple queue. [CODE]using System; public class Stack { private int[] theArray; private int topOfStack; public Stack() { theArray = new int[10]; topOfStack = -1; } …

Member Avatar for ddanbe
0
759
Member Avatar for Kerry

[code=c]#include<stdio.h> #include<conio.h> main() { int num, rem=0; printf("\n Enter the number "); scanf("%d", &num); while(num>0) { rem = (rem * 10) + (num % 10); num = num / 10; } printf("\n Reverse of the number is %d", rem); getch(); } [/code]

Member Avatar for c0ld sn1ff3r
0
509
Member Avatar for c0ld sn1ff3r

Hii.. I'm Mahesh from India.. I have taken admission to CSE this year! Hope to have a great time here!

Member Avatar for Denniz
0
50

The End.