POV-Ray : Newsgroups : povray.binaries.programming : command line : RE: command line Server Time
24 Apr 2024 01:41:12 EDT (-0400)
  RE: command line  
From: majucatur
Date: 5 Mar 2002 12:47:33
Message: <3c8504b5@news.povray.org>
Another example:

program.c - - - - -

#include <math.h>
#include <stdio.h>

void main() {
   float Var;
   printf("\nA number :");
   scanf("%f", Var);
   printf("\n\nThe square root of %f is %f\n", Var, sqrt(Var));
   getch();
}

- - - - -

that's all, how can I compile this in the command line?


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.