Forum: C Aug 1st, 2008 |
| Replies: 7 Views: 2,959 Hi, you need array for maximum and minimum in each column
float M[3][3]=
{
{0.01, 1.02, 2.05},
{2.01, 0.00, 5.00},
{3.01, 4.00, 0.40}
};
//You will have three minimum and... |
Forum: C May 21st, 2008 |
| Replies: 12 Views: 1,742 HI
Step to follow
> Declare a variable (say ans) as int or long
> Initialize ans as 1 (ans = 1)
> Start a for loop with variable (say i) for 1 to the given number (say power, in your... |
Forum: C May 16th, 2008 |
| Replies: 8 Views: 1,625 Hi
U can try Memory functions like memcopy () .... something like that for quick swapping. I dont much about memory functions. but it may helpful to fast swapping |
Forum: C Apr 28th, 2008 |
| Replies: 7 Views: 1,231 Do u mean reading from a file or standard input that is keyboard
If it is standard input u can try
gotoxy (x,y) function |