RSS
people

Overburn CD’s Using Nero

Do you want to burn 800MB cds? Do you want to overburn 700MB cds? It’s easy, just follow these steps:

1.Enter Nero Burning Rom

2.Enter the Preferences menu

3.Enable overburn ‘disc-at-once’ burning must be checked

4.Maximum CD length: must be 82 min 0 sec 0 frm

Now you can burn easily 800MB cds and overburn normal cds.

Continue reading about Overburn CD’s Using Nero

No Comments |

Firefox faster

The way to increase the response time in Mozilla Firefox

1) Type in the adress bar “about:config” then press Enter.
2) Select “network.http.pipelining”, double-click it and then you will see some changes including the variable “true”.
3) Select “network.http.proxy.pipelining”, double-click it and you will see some changes including the variable “true”.
4) Select “network.http.pipelining.maxrequests”, press right click on it, then New-> Integer and add the “0″ variable.
This variable forces the browser to have a faster response time.

Continue reading about Firefox faster

No Comments |

List of MS-DOS Commands

ANSI.SYS Defines functions that change display graphics, control cursor movement, and reassign keys.

APPEND Causes MS-DOS to look in other directories when editing a file or running a command.

ARP Displays, adds, and removes arp information from important]devices[.

ASSIGN Assign a drive letter to an alternate letter.

ASSOC View the file associations.

AT Schedule a time to execute commands or programs.

ATMADM Lists connections and addresses seen by Windows ATM call manager.

ATTRIB Display and change file attributes.

BATCH Recovery console command that executes a series of commands in a file.

BOOTCFG Recovery console command that allows a user to view, modify, and rebuild the boot.ini

BREAK Enable / disable…

Continue reading about List of MS-DOS Commands

No Comments |

Where can I find C standards documents to download?

Below are the links to different C standard documents:

Note: ISO/IEC 9899:1999 is the current standard for C language. The n869 is the draft prepared for the current standard, so it may not contain accurate information. C89 (also called as C90) is the most widely supported standard by compilers, not many compilers have complete support the C99 standard.

Continue reading about Where can I find C standards documents to download?

No Comments |

Most obfuscated code to print india map

Check this program really cool !!!!

india.png

 

program :

#include
#include
main()
{
int a,b,c;
int count = 1;
for (b=c=10;a="- FIGURE?, UMKC,XYZHello Folks,\
TFy!QJu ROo TNn(ROo)SLq SLq ULo+\
UHs UJq TNn*RPn/QPbEWS_JSWQAIJO^\
NBELPeHBFHT}TnALVlBLOFAkHFOuFETp\
HCStHAUFAgcEAelclcn^r^r\\tZvYxXy\
T|S~Pn SPm SOn TNn ULo0ULo#ULo-W\
Hq!WFs XDt!" [b+++21]; )
for(; a-- > 64 ; )
putchar ( ++c=='Z' ? c = c/ 9:33^b&1);
}

Continue reading about Most obfuscated code to print india map

No Comments |

Program Without main() function !

program without main() !!

#include
#include
#define e1(s,t,u,m,p,e,d) m##s##u##t
#define begin e1(a,n,i,m,a,t,e)
begin()
{
printf("Muthu ");
}

One clue , main is called indirectly !! Got it ????

Continue reading about Program Without main() function !

No Comments |

sizeof()

Well found something new about the sizeof()

firstly it is an unary operator and shouldn’t be mistaken for a function

secondaly, what do you expect the output of

int i=10;
j=sizeof(i++);
printf("%d, %d",i,j);

well the value of i doesn’t get incremented as sizeof is a compile time operator and produces a compile-time integer constant value. The expession inside sizeof() is only expected to deduce its type and is not fully evaluated…. should have known this though!!!!

also found a new thing today…. sizeof(’x’) returns 2 or 4 but not 1. This is because by definition, in C, character constants are integers and not characters!!!! I…

Continue reading about sizeof()

No Comments |