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 Wanet Telecoms Ltd 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: leela74
  • Content: Threads
  • Order by date
  1. leela74

    c to c++..

    Hi, Is it possible to access database through c program. If yes how? Or otherwise if I use the vc++ compiler... Can I join two programs one is pure c code copiled in vc++ and the other is vc++ code accessing database.... Thanks in advance Sridhar
  2. leela74

    repeating the folder name...

    Hi, SwapSwae, U have got the problem... and the problem is.. as u explained... When first time prog runs, the path is "C:\\SwapC" and then we concatenate the name of file to it making it look something like this "C:\\SwapC\\abc.txt", Now when u return bk to the same u...
  3. leela74

    folder and accessing file..

    Hi, SwapSwae Nice to see u r reply in the thread "going to particular folder". Yeah u r right I am getting 99% every time and unable to get what I want... Now today I got the code as u suggested and only one error in this code is it couldn't able to allocate sufficient memory...
  4. leela74

    going to a particular folder...

    Hi, I am facing a problem to go to a particular folder ad access a file.. The code goes like this... # include <stdio.h> # include <string.h> # include <stdlib.h> FILE *fp,*fs; int main() { char name[8]; char command[20]=&quot;cd &quot;; printf(&quot;Enter absolute path for Directory to be...
  5. leela74

    going to a particular folder...

    Hi, I am facing a problem to go to a particular folder ad access a file.. The code goes like this... # include <stdio.h> # include <string.h> # include <stdlib.h> FILE *fp,*fs; int main() { char name[8]; char command[20]=&quot;cd &quot;; printf(&quot;Enter absolute path for Directory to be...
  6. leela74

    to get date and time....

    Hi, With the following program I amgetting date and time in a buffer. #include <time.h> #include <stdio.h> void main(void) { char datebuf[9]; char timebuf[9]; _strdate(datebuf); _strtime(timebuf); printf(&quot;Date: %s Time: %s\n&quot;,datebuf,timebuf); } The date and time are in...
  7. leela74

    creating a folder

    Hi, How can i create a folder in c. Suppose for eg. from my login id and password I will get the user name the program has to look for the folder in that drive and if it is not there it has to create a folder for that user name. How do i do this... Thanks in advance Sridhar
  8. leela74

    reading a file

    Hi, I have a problem. There is one file called abc in that list of ids and names are there. for ex. 1234 sridhar 5678 abcd etc I want write a c program to validate the entered number with the file nuumber and get the name and open a file with extension(suppose entered number is 1234 a file...

Part and Inventory Search

Back
Top