Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tomdacat

    Convert Character to integer

    i am writing a simple Data base in fortran to check if a staff member has done there training or not and to display the date they need to do it so i get some Data from a Dates.txt file and save it as character(len=10) :: dates(65) but for the next part of my program i need to change my...
  2. tomdacat

    make your own graphics libary?

    For a while now i have been wondering just how opengl and sdl rely draw graphics to the screen and how could you do it yourself? is it rely that hard to make a function to put a pixel at cord 50, 60? if anyone knows how to make a very simple graphics libary then please post a reply thanks in...
  3. tomdacat

    Why dose noone make games in fortran?

    Also I am posting this under the assumption that most pepole think you cant make games im fortran!!!
  4. tomdacat

    Why dose noone make games in fortran?

    this may be a stupid question and i can understand if you think so but in modern fortran(f08) why cant you make games? and as fortran has graphics libarys i dont see why it cant do the same as a language like c c is my joinet favrote language with fortran and i havent yet spotted any major...
  5. tomdacat

    how to read strings from the console ?

    do you mean get user input? if so use scanf example #include <stdio.h> int main() { char input; scanf("%s", input);//the %s depends if you want to get the input as a int then do %d etc printf("You Entered: %s", input); return 0; }

Part and Inventory Search

Back
Top