As of revision 3 of your code:
mike@linux-4puc:~> gcc a.c
a.c: In function ‘main’:
a.c:29:16: error: ‘s’ undeclared (first use in this function)
a.c:29:16: note: each undeclared identifier is reported only once for each function it appears in
a.c:30:30: error: invalid operands to binary * (have ‘char *’ and ‘int’)
a.c:33:9: error: ‘f0’ undeclared (first use in this function)
a.c:35:20: error: invalid operands to binary * (have ‘char *’ and ‘int’)
a.c:40:8: warning: incompatible implicit declaration of built-in function ‘exit’ [enabled by default]
So let's go through them:
1) Yup, here you use s and it has not been declared anywhere. Read up about sscanf here. The first parameter is a const char *, or a string where we'll find the content. In your case s is not declared. You want to get the temp (or second command line variable) so you need to pass argv[2] here, not s
sscanf(s,"%f",&temp_c); --> sscanf(argv[2], "%f", &temp_c);
2) Again, you're using something that has not been declared, this time f0.
else if(f0==strcmp(argv[1],f)){
Looks like you just wanted 0 like in the first if, so just remove the f
3) Invalid operands to binary * means you're trying to do math on a string and the compiler doesn't know what to do. The arguments, argv[x], are strings no matter if you pass numbers or not so this:
temp_c = argv[1]*9/5+32;
Is not valid. You already did the conversion too! That's what the sscanf() did for you, so the value you want is temp_c, not argv[1]
4) incompatible implicit declaration of built-in function in this case means that you're trying to use a standard function exit() but didn't include the correct header file. Including <stdlib.h> will fix that.
That takes care of the warnings and errors.. however your code still has some logic and conformance problems:
printf("%f celsius = %f fahrenheit", &temp_c, argv[2]);
This is not what you want. Don't pass the address of temp_c, you want the value, not the value of the pointer. Read up on the ampersand in C, you can't just throw these around wherever you want to.
The second issue with this statement is argv[2] is not a number, it's a string (we went over this before) so you have to use the string format specificer %s not the float %f.
Same issues in both your printf's.
One more issue, your main function should return an int, that's what int main(... means. Before you leave the function you should make sure there's a return 0; or exit(0); You have one, but only if you fall into the else case. You should just have one, unconditionally, at the end of the function.
argv[0]is traditionally the name of your program... so it would never be-for-cunless you named your program that way... also you can't assign a string literal to achar. – FatalError Oct 17 '12 at 10:41