Forum: C Dec 9th, 2004 |
| Replies: 0 Views: 3,075 This is the code I wrote for a calculator in C
#include <stdio.h>
int main (int argc, char **argv)
{
int i;
int value;
int total; |
Forum: C Nov 28th, 2004 |
| Replies: 4 Views: 6,789 I dont know how to turn hello into HELLO!
I would like to sit down and code like a maniac, I understand whta to do but putting it in computer language is hard for me. |
Forum: C Nov 28th, 2004 |
| Replies: 4 Views: 6,789 Hi Everyone
I have to write a grep program in C and I am not sure where to start. :?:
I need to use strstr() from the standard library, and get it to work; but I dont know how to do that.
And ... |
Forum: C Nov 15th, 2004 |
| Replies: 6 Views: 4,348 Hi
I tried what you said, and when i compiled it told me that i was passing arg from an incompatible pointer. I am so confused, I dont even know what that means. This is my first time ever doing... |
Forum: C Nov 11th, 2004 |
| Replies: 6 Views: 4,348 Thanks so much I will try that. One more question. when i delcare file 1, 2 and 3 as argc 1 2 and 3, does it have to contain something? like should i name file 1 2 and 3 something already in my list... |
Forum: C Nov 11th, 2004 |
| Replies: 6 Views: 4,348 hi I am trying to write a simple cat program in C but am getting very confused. I thought i knew where to start but I dont. the assignment says: You will be writing a simple version of the program... |