- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
5 Posted Topics
[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]
You can also try rapidshare.com
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; } …
[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]
Hii.. I'm Mahesh from India.. I have taken admission to CSE this year! Hope to have a great time here!
The End.
c0ld sn1ff3r