Quote Originally Posted by anduril462 View Post
And what did you put as the very last line of main? I'm guessing you still get warnings when you compile, and it should tell you exactly the problem. Note that, since your program doesn't take command line arguments, you should probably do int main(void). Make your code match your intentions and be explicit.
In the last line of the program I added "return 0;"
I get no warning nor errors I get this "Process terminated with status 0 (0 minutes, 3 seconds)"
I read that if the process is terminated with status 0. It means it is ok unless I'm mistaken.
I'm a newbie in C, first day using it on my own.

Code:
#include <stdio.h>
int main (int argc, char *argv[] )
{
    double f , c;
    printf("Give Temperature in Fahreneit:");
    scanf("%lg" , &f);
    c = 5.0 * (f-32) / 9.0;
    printf("Celcious Degrees: %lg" , c);
    return 0;
}