thank you.
i had written that function using blocks.i don't know what happened when i posted it.
For lcm try this one: int lcm(int a;int b) { int n; if(a<b) { n=a;...
For lcm try this one: int lcm(int a,int b) { int n; if(a<b) { n=a; a=b; b=n; }...
I have developed this program on turbo c++ 3.0 version. This version is available on net at "http://www.dei.isep.ipp.pt/~ana/Prog_II/turboc.htm...
Ok.I understand the problems which I have created for someone else to understand the program.From here onwards I will take care that. Now, it...
My program can solve a sudoku with any no. of problem no.s from 0 to 80. If you run this program, you get a 9*9 grid.In that you go to places...
Hi, I am attaching an easy sudoku solving program.there are some conditions of input in which the program goes in infinite loop.How do i check...
i have tried time.h header file and clock( ) function.But i don't the unit of the output.it always comes 1 or 0.Can we get that in milliseconds?a...
how to get the starting time and end time?Can we get that in milliseconds? The time calculated by this way will include other execution times...
Hi,I am attaching a file containing a sudoku solving program in c.How can I get the execution time for this one?Please help. #include<stdio.h>...
Separate names with a comma.