Search:

Type: Posts; User: jasrajva

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    4,025

    Beginning Linux Programming Wrox Publications ...

    Beginning Linux Programming Wrox Publications

    Linux Programming Bible published by BPb in india( iguess you are in india arent u?)

    if you want t begin the Linux Kernel
    then try
    The Linux...
  2. Replies
    16
    Views
    5,189

    in the same dialog box it probably shows you a...

    in the same dialog box it probably shows you a browse button
    i dont know if win95 does that
    win 98 onwards always does that when somethin is missing and lets you find it

    if you get the browse...
  3. Thread: <conio.h>

    by jasrajva
    Replies
    4
    Views
    2,081

    no you cant use conio.h on linux you will need...

    no you cant use conio.h on linux

    you will need to use ncurses

    also if you want to really use conio.h
    try using wine and run your dos based compiler on it
    and then run the dos exe's thru wine...
  4. Replies
    13
    Views
    2,696

    that was cool

    that was cool
  5. Replies
    3
    Views
    10,062

    dont know the nswer to that one but i am just...

    dont know the nswer to that one
    but i am just curious

    why do you need multiple params?
  6. Replies
    27
    Views
    2,843

    i used emacs initially but found that mcedit was...

    i used emacs initially but found that
    mcedit was just as good for my needs since then thats what use

    offcourse if you prefer gui you could use a free ide like borland kylix
  7. Replies
    2
    Views
    1,423

    you shouldnt mount it on opt when you do that...

    you shouldnt mount it on opt
    when you do that the /dev/cdrom replaces /opt

    you should create a partit or directory called /mnt and mount everything into this

    eg /dev/cdrom goes into...
  8. Replies
    31
    Views
    9,482

    Poll: that was me cleaned up the cookies so...

    that was me
    cleaned up the cookies so...
  9. Replies
    31
    Views
    9,482

    Poll: hey you are being unfair here a) all you...

    hey you are being unfair here

    a) all you needed to solve your problems was a dos/win boot disk
    and type in
    fdisk /mbr

    if mandrake screwed up your partition table then they really are to...
  10. Replies
    24
    Views
    4,838

    Poll: i guess the americans will lose this one btw i...

    i guess the americans will lose this one

    btw i live in india
  11. Replies
    21
    Views
    5,123

    Poll: its rotten millions of lines of the linux...

    its rotten

    millions of lines of the linux kernel dont use hungarian (or for that matter any) notation

    and yet its more stable than win which does


    i guess its better to write ample comments...
  12. Replies
    16
    Views
    5,301

    Poll: when ms bought DOS (yes like most of bill's...

    when ms bought DOS
    (yes like most of bill's 'ideas' this one was bought too..)

    it was called QDOS by the company that made it
    qDOS was Quick & Dirty Operating System

    and it still is Dirty
    ...
  13. Thread: what is wine

    by jasrajva
    Replies
    19
    Views
    3,127

    i do have the best drivers available im not...

    i do have the best drivers available
    im not telling you my system specs or you'll laaf

    i ran ms hearts and it was way too slow

    ok i'll tell you
    i have a P1MMX166hz 64 MBram etc

    now dont...
  14. Thread: what is wine

    by jasrajva
    Replies
    19
    Views
    3,127

    where are they ??? btw i have a 133 meg swap...

    where are they ???

    btw
    i have a 133 meg swap partition

    and i checked ... only about 15 megs were being used


    also my comp is not really a 100m sprinter
    so i checked it out on a friends...
  15. Thread: what is wine

    by jasrajva
    Replies
    19
    Views
    3,127

    but winapi is well documented so you know what...

    but winapi is well documented so you know what you want done


    any way
    i run wine on my caldera openlinux 3.1
    and can run all the win games solitaire et al
    i can also run winzip windows media...
  16. Replies
    2
    Views
    963

    the simplest way would be to use the graphics.h...

    the simplest way would be to use the
    graphics.h lib
    you have gotoxy to place your text
    and more fns(look them up in yourmanual)
    to change foreground and background colors
    you can either...
  17. Replies
    5
    Views
    6,255

    what you are doing is called the caesar cipher ...

    what you are doing is called the caesar cipher

    this is basically modulo arithmetic so you need to do


    (ch + 3)%'z'
    so that
    'x'+3 would wrapa round to 'a' and so on

    jv
  18. Replies
    1
    Views
    1,023

    you have got the skeleton code ready what you...

    you have got the skeleton code ready
    what you really need to do is seach google or someplace for linked lists and read up on them
    they are very simple really and shouldnt take you more than a...
  19. Replies
    37
    Views
    8,868

    i think commercial software is highly overpriced...

    i think commercial software is highly overpriced
    and big software companies use the piracy figures as an excuse to hiking that price even higher
  20. Replies
    2
    Views
    1,064

    no it doesnt it will contain the ascii value...

    no it doesnt it will contain the ascii value
    what you want is the decimal value which is 1 itself;

    so do



    j = static_cast<int>( k[0]) - '0';
  21. Replies
    37
    Views
    8,868

    im like oskillian in india too its hard to find...

    im like oskillian
    in india too its hard to find home users that do not run pirated software
    i use
    win98
    win2000 prof
    office XP
    msvstud6
    ageof emp
    ageofkings:tc
  22. Thread: mathematics

    by jasrajva
    Replies
    3
    Views
    900

    obviously b = t*4+s cannot have unique soln for...

    obviously
    b = t*4+s
    cannot have unique soln for any given b

    so given b you can assume values for t
    say from 1 to 100 and then find the corresponding value of s or vice versa


    ie 10 = 1*4 +6...
  23. Replies
    7
    Views
    2,535

    use a global variable int i; and incrment it...

    use a global variable
    int i;

    and incrment it each time you printf()
  24. Thread: error in code

    by jasrajva
    Replies
    4
    Views
    1,644

    1) use integers for n and PersonID anyway you...

    1)
    use integers for n and PersonID

    anyway you are doing scanf(%d) on a float so you'll cause hell

    and

    you cannot use a float in a array subscript
  25. Replies
    11
    Views
    1,330

    offcourse it canbe done class A { ...

    offcourse it canbe done




    class A
    {
    int i;
    public:
    class B;//just a declaration
Results 1 to 25 of 103
Page 1 of 5 1 2 3 4