I am attempting to create a C code that finds the factorial of a integer so that I may convert my code to assembly language. My code seems to \'multiply\' the second integer twi
Check this...
https://code.sololearn.com/cKWo4Cc0GKd1
I've created it using JAVA
class Main { public static void main(String[] args) { String str="123456"; int sum=1,t=1; for(int i=2;i<=str.length();i++){ for(int j=0;j