Showing posts with label C LANGUAGE. Show all posts
Showing posts with label C LANGUAGE. Show all posts

Run Turbo C in Full Screen Mode in Windows Vista and Windows 7

0 comments
Follow these steps:
1.download dosbox .click here to download

 2.install dosbox

 3.open it and mount d drive on which turbo c is installed

ex: here i installed in c drive so command will be

mount c c:\

now go in c drive by giving command

c:

now go to directory where tc.exe is present like in my case it is in bin folder under tc folder in c drive,it can be different for different turbo c setups

cd tc

cd bin

tc

after typing above three command u will get tc screen pree ALt+ENTER  for full screen

In windows 7 go to device manager and disable video driver and you will get full screen

Download Turbo C Free , Download Turbo C++ 3.0

0 comments
follow these instructions:
- Save the file attached. click on the file which was saved, it is a zipped file, so the winzip application will be opened. Click on the extract icon in the winzip. exit from the winzip and click on INSTALL in the directory. TC will be installed now, follow after the instructions. After finishing the installation process, go to the Bin directory and click on TC to run Turbo C.
for a detailed guide read the above installation-doc in tutorial 1.
TURBOC30.zip 3.3 MB  


To run turbo c in full screen mode in windows vista  and windows 7 please Read








                                                                         
                                                      



If y=2 z=3 and x=y&z then x=? (Use of Bitwise Operator )

0 comments

There are 3 main Bitwise Operator
 & The bitwise AND operator
| The bitwise OR operator
^                                                          The bitwise exclusive OR (XOR) operator 

Using AND Bitwise Operators:

x= y&z
Here y and z are operands.
If y=2 and z=3
Decimal Results
  Expressions        Binary           Decimal       Binary
         2 & 3     0010 & 0011               2     0010
the expression with two binary operands, 0010 & 0011, returns 0010
so the Ans is x= 2.

Program:

void main( )

{
int x,y,z;
clrscr();
y=2;
z=3;
x= y&z;
printf("%d",x);
getch();
}
Output:2                                 









DynamicOxygen.com - Enjoy High eCPM Rates!

Members

 

Copyright © 2008-2011 InFoMiXo , Owner:Pratyush Maurya. All rights reserved.


Top | MS DINESH PAGE(POETRIES AND SHARIYA) | About Us | Contact Us



This site is best viewed with Internet Explorer 6.0 or higher, or Firefox 2.0 or higher, at a minimum screen resolution of 1024x768.