What's new

C & C++ C algos

I am nobody

Forum Guru
Elite
Joined
Jan 30, 2016
Posts
4,159
Solutions
2
Reaction
4,965
Points
1,992
Para mapadali mga exam natin, pwede din kayo mag request ng ng algo.
 
Last edited:
#include<stdio.h>

int reverse(int x)
{
while (x>0){
printf("%d",x%10);
x/=10;
}
}


int main()
{
int num=12345;
reverse(12345);
}
 

Similar threads

Back
Top