1. Write a c program to reverse any number.
2. Write a c program to find out sum of digit of given number.
2. Write a c program to find out sum of digit of given number.
10. Write a c program to find out NCR factor of given number.
11. How to convert string to int without using library functions in c
12. Program in c to print 1 to 100 without using loop
13. C program for swapping of two numbers
14. Program to find largest of n numbers in c
15. Split number into digits in c programming
16. C program to count number of digits in a number
11. How to convert string to int without using library functions in c
12. Program in c to print 1 to 100 without using loop
13. C program for swapping of two numbers
14. Program to find largest of n numbers in c
15. Split number into digits in c programming
16. C program to count number of digits in a number
32 comments:
good program
thanx dude
please tell me how to write a programme to generate Fibonacci series using recursion
Sir, Plz tell me When there is the requirement to see the numbers from 1 to 2000 using for...loop it displays one screen i want to see it using pagewise. what is the procedure.
Kamala kanta Rath
cool but each information is necessary to us so upload every one programme//
explain me the logic
what is the use of while loop here?
Can any body tell me if i want to sum of a digit of a fraction no then what shal i hav to do?
E.g 123456.789
1+2+3+4+5+6+7+8+9=45
EXCELLENT PROGRAMINGWITH ANSWERS
IT'S LOT OF
HELP YOU
please tell me how to write c program to find second largest digit of given number using function
literally..a when ever i see his answers, i find myself nothing....his logic is too good..
Thanks a lots..its help me as a beginner on programming.
Really appreciate ur work !
Thanks
Check your programme in which u used while loop:while (num) it should be while (num!=0).
It is correct.
Every non-zero value is treated as true.
So the loop iterates till num reaches 0.
can anyone please help me write a code to calculate the sum of the input given number using 3 LOOPING STATEMENT??? thank you!
code1 is not working for six digit number like123456 (producing garbage value)...can anyone help me
pls say why we are using while loop here.....................
how to print diagonal elements of 3*3 matrix
hw to print sum of integers in the range 1 to 100 till it encounters -1. print all sum of numbers before it encounters -1.
Must!! Urget. Can anyone??
WAP to accept the value under 100 and multiply the digit till you get the result in single digit.
Ex: 28, 2*8=16 =1*6 = 6
plz tell me the program to add two numbers each of 100 digits.
plz tell me the program to add two numbers each of 100 digits.
plz tell me the program to add two numbers each of 100 digits.
Int I=1,j=1,r;
While(I<=12)
{ while(j<=12)
{
r=pow(I,j);
Printf("%d power %d= %d",I,j,r);
J++;
}
I++;
}
// I need the output to be 1 up to 12 of powers so where is the error//
Because it's works for particular digits only...you have to use for loop...
Sorry, but the condition while(n!=0) will not work when we enter numbers like 4098,902,8904 which includes 0 in it. It will only do sum of digits of numbers after 0. So it is not working for me. Can u plzz help me to sort out this. :(
One more think Please add a feature here to reply others.
How to perform 13/5 ans should display 2.6
Post a Comment