Search:

Type: Posts; User: developersubham

Search: Search took 0.00 seconds.

  1. Help me in creating a scroll bar in Turbo C 3.0

    I'm developing a project of Telephone directory in C. There I ned to show data in the from of table having scrollbar in it. I'm using text based GUI. How to create a dos based scroll bar in Turbo C...
  2. Replies
    0
    Views
    2,649

    How to get current cursor position?

    Is there any function by which we can get the current cursor position in Turbo C 3.0?
    Plz help me.
  3. Compiler doesn't check if it has got the answer.

    If a left part of the || is +ve, it is obvious that the output will be 1 therfore compiler doesnot calculate the other side of the ||. It ignores it.
    Similarly if left side of && is 0 the result is...
  4. I also thought like you. But need clarifications....

    I also thought like you. But need clarifications. Thanks for giving a try.
  5. thanks for the help.

    thanks for the help.
  6. No, the output is not as expected. I can't...

    No, the output is not as expected. I can't understand it.
  7. int main() is always not needed. void main() is...

    int main() is always not needed. void main() is also correct. The program has output.
    yes i have executed it.
  8. What will be the output of the following code?

    What will be the output of the following code and WHY?


    #include <stdio.h>

    void main()
    {
    int x,y,z;
    x=y=z=1;
    z=++x||++y&&++z;
Results 1 to 8 of 9