Forum: C Dec 4th, 2004 |
| Replies: 3 Views: 2,241 Hi everyone,
Let us see how far you have gotten so we can continue from there
Post whatever codes you have so far
Richard West |
Forum: C Sep 23rd, 2004 |
| Replies: 2 Views: 2,114 hi everyone,
You can use kramer's rule.
This rule is a kind of math formula that can be implemented in programs
Yours Sincerely
Richard West |
Forum: C Sep 19th, 2004 |
| Replies: 6 Views: 2,310 Hi everyone,
yes, but you have to create everything even api's that display the text on the screen. You can also do it for gui's but you have to create your own look and feel and... |
Forum: C Sep 3rd, 2004 |
| Replies: 12 Views: 3,367 Hi everyone,
I rewrote your program a bit and seems to work for me
#include <stdio.h>
void main(void)
{
String pass;
printf("Enter Password: ");
scanf("%s",&pass); |
Forum: C Aug 8th, 2004 |
| Replies: 1 Views: 1,673 Hi everyone,
Do not use a nested loop but just use a single input variable with a counter like variable
Try this
int k=0;
for(i = 0;i<3;i++)
{
k = k+1; |
Forum: C Aug 8th, 2004 |
| Replies: 1 Views: 2,530 Hi everyone,
Most probably your codings has caused the entire program to crash during the linking process. Try checking your computer for virues or spywares as they could also be... |
Forum: C Aug 8th, 2004 |
| Replies: 4 Views: 3,018 Hi everyone,
I not very clear what you are talking about.
Receving decimal numbers???
Do you mean returning decimal numbers from a function
declare a variable as float... |
Forum: C Jul 29th, 2004 |
| Replies: 0 Views: 2,065 hi everyone,
I need help on a single document interface (sdi) i have created.
I created the sdi using the CRichEditView as its base class. I know that the... |
Forum: C Jul 24th, 2004 |
| Replies: 4 Views: 2,184 Hi everyone,
i am not very sure what you need to do but here is most of the main part of the program
#include<stdio.h>
#include<math.h>
#include<Ctype.h>... |