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 Mike Lewis 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: *

  • Users: Bugged
  • Order by date
  1. Bugged

    Problems with scanf and gets

    I think the first gets reads the newline char after the number of students. a dummy getchar() call after scanf("%d",&numb) should help. .... scanf("%d",&numb); getchar(); .... I hope this helps!
  2. Bugged

    how to call windows API functions from C program?

    You have to simply include the apropriate header file and call the function. I think #include<windows.h> would help for most of the commonly used functions.
  3. Bugged

    Starting up another program from my C program

    It think you can use exec() to run the program2 from program 1
  4. Bugged

    multi-dimensional arrays

    Hi Even if multiArray is initialised as a global in the lookUp.cpp its giving correct results .I don't know why its not working for you. Since I am able to get the correct results with your code.

Part and Inventory Search

Back
Top