How to use USB flash drive as ram in windows 8, 7 and XP (pendrive)

Posted by Tushar Bedekar
Many of the programs in the system uses lots of memory during operations. The processing speed of a system depends on RAM.  So to solve this problem use your pendrive or USB as a RAM.
Using pendrive as a RAM increases the system performance. It is not a difficult process you can easily do this with the help of the following simple steps.
First insert your pendrive (minimum 2GB recommended).
Format your pendrive.

Steps for Windows XP
  • Right click on “My Computer” and go to “properties”.
  • Now click on ‘Advance tab’.
  • Click on the ‘settings’ of performance.
  • Now the performance options appear. Go to ‘Advance tab’.
  • Click on ‘change’ option of virtual memory.
  • Select your pen drive.
  • Click on ‘custom size’ which is a radio button. It displays the initial and maximum size of the pen drive.
  • Click on ‘set’ button.
  • Click ‘OK’ to complete the setup. 
Finally you had to restart your PC.
Steps for Windows 8 and 7
  • Plug in your Pen drive.
  • Format it.
  • Right click on the pen drive icon.
  • Select ‘properties’.
    • Select ‘Ready boost’.
    • Click “use this device”.
    • Now select the maximum space that  RAM can give to the computer.
    • Click ‘ok’ and ‘apply’.

      MORE
      There is a software called Eboostr which uses the hidden RAM in your computer. You can configure more than 4 pen drives with this software.

Read More

Can we write any thing inside the main function in c?

Posted by Tushar Bedekar
Image result for cyes we can write inside the main function.That is we can pass formal arguments inside the main function in c.we can declare any variable inside the main function which is same as declaring the variable inside the block of the main function. lets have a look on the program given below:




Program:-  

#include <stdio.h>
#include <stdlib.h>

int main(int a,int b)
{
    int c;
    printf("\"enter the two numbers\"");
    scanf("%d%d",&a,&b);
    c=a+b;
    printf("the sum of %d and %d is %d",a,b,c);
    getchar();
    return 0;
}

Have A Try:-

Can we Store Something in the void Data Type.If no then what is the purpose of using void as a modifier or a data type in "C Programming" languages.put your answer in the form of the comment.

you many also contact us at contact us
Email:-      admin@allaboutcomputing.net
Read More
back to top