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 gkittelson 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: amarevu
  • Order by date
  1. amarevu

    Problem with programming in the terminal

    Can you give some detail explanation Amarnath Revuri
  2. amarevu

    How to driver the mouse

    Use interupt 33H and getvector and setvector functions.
  3. amarevu

    Any C++ trainers/consultants out there?

    Good Luck Amarnath Revuri
  4. amarevu

    Any C++ trainers/consultants out there?

    Hi Stuart, I can teach you GNU C++/Forte C++ on Sun OS thorough online. If you feel then we can discuss about the mode of communication(thorough chat sessions etc.) etc. Regards, Amarnath Revuri Systems Analyst. mailid: amarevu@yahoo.com
  5. amarevu

    Any C++ trainers/consultants out there?

    Hi Stuart, I can teach you GNU C++/Forte C++ on Sun OS thorough online. If you feel then we can discuss about the mode of communication(thorough chat sessions etc.) etc. Regards, Amarnath Revuri Systems Analyst.
  6. amarevu

    pointers and memory management

    Use free() in C or delete in C++ or at the end of the programme use fflush(stdio). Amar.
  7. amarevu

    Programming Challenge: Roman Numbers

    Hello Mr vlitzer, Here i have written to convert decimal numbers into roman numbers using 5 bifurcative structures. I have used fortec++ compiler on solaris. #include <iostream.h> #include <string.h> #include <math.h> char * fnConvertRoman(int num, int len) { char array[3][3] =...
  8. amarevu

    Can C...

    Hi Celia, The following link provides you API, jars and source code of the API used to create .pdf files. This code is written in JAVA. It is freely downloadable. The name of the API is iText http://www.lowagie.com/iText/docs.html#download. Amar.
  9. amarevu

    Long IF statement

    Hey Dude, This is Good logic(int value = 'A' | 'A'<<8 | 'A'<<16; ), But for each and every String there is a need of doing bit operations. Instead of doing like this it is better to use if conditions using strcmp or strcasecmp. Am i right? Amarnath Revuri.
  10. amarevu

    HELP!! Universal clear the screen code for c++ &amp; Unix

    In Windows we can use clear() of conio.h. But for UNIX there is no console headers. So it is better to use &quot;clear&quot; command of UNIX system using 'system' function of stdlib.h. include the following line at header includes. #include <stdlib.h> and use the following line where you want...

Part and Inventory Search

Back
Top