In C we can see that array parameters are generally treated as pointers. See the following definitions of two functions:
void function1(int arr[])
{
/* Silly but valid. Just changes the local pointer */
arr = NULL;
}
void function2(int *arr)
{
/*...
Friday, November 29, 2013
Wednesday, November 27, 2013
Voice Search On Google
Search by speaking.
- You can now say things like "pictures of …" or "where is …?"
- Fixed browser button in latest versions of Chrome.
Voice Search provides a method to search by speaking. For example,
just click on the microphone and say "kittens" to search for kittens.
If you specifically want pictures of kittens, say "google images
kittens".
Want to learn more about World...
Sunday, November 17, 2013
HOW TO LOG OUT YOUR FACEBOOK ACCOUNT FROM OTHER COMPUTERS?
Facebook
We use to go cyber cafe or any other place and open facebook or from friend's mobile and sometimes we
forgot to log out but now don't need to be worry about it,there is a
option to log out your account from every computer.....follow the
steps... 1. log in your account...
Sunday, November 10, 2013
Different Technologies & Their Founders
If any mistake, inform me ...plz...
1. Google: Larry Page & Sergey Brin 2. Facebook: Mark Zuckerberg 3. Yahoo: David Filo & Jerry Yang 4. Twitter: Jack Dorsey & Dick Costolo 5. Internet: Tim Berners Lee 6. Linkdin: Reid Hoffman, Allen Blue & Koonstantin Guericke 7. Email: Shiva Ayyadurai 8. Gtalk: Richard Wah kan 9. Whats up: Laurel Kirtz 10. Hotmail: Sabeer Bhatia 11. Orkut: Buyukkokten...
Thursday, November 7, 2013
DIFFERENCE BETWEEN CORE I3, CORE I5, CORE I7...??
-> Core i3: * Entry level processor. * 2-4 Cores * 4 Threads * Hyper-Threading (efficient use of processor resources) * 3-4 MB Cache * 32 nm Silicon (less heat and energy)
-> Core i5: * Mid range processor. * 2-4 Cores * 4 Threads * Turbo Mode (turn off core if not used) * Hyper-Threading (efficient use of processor resources) * 3-8 MB Cache * 32-45 nm Silicon (less heat and energy)
...
Tuesday, November 5, 2013
C program to print a semicolon without using a semicolon anywhere in the code.
Generally when use printf("") statement we have to use semicolon at the end.If we want to print a semicolon, we use the statement: printf(";" );In above statement, we are using two semicolons . The task of printing a semicolon without using semicolon anywhere in the code can be accomplish ed by using the ascii value of';'which is equal to 59.Program: Program to print a semicolon without using semicolon...