[VL]
If you face any problem on installing window 8 without product key then don't forgot to comment on below.
If you face any problem on installing window 8 without product key then don't forgot to comment on below.
There are certain tricks for fast search using Google.With help of keyword and certain tricks you can found lots of information what you wants in 1 minutes.
—Site:
[site:] Google will restrict the results to those websites in the given domain. say a site www.stackoverflow.com, Google will search all the information residing on this site.
—Intitle:
Query [intitle:] restricts search result to document containing only that word in the title.
eg :- intitle:BalanceScoreCard
—[allintitlel:] eg:-allintitle:Balance Score Card filetype:pdf ***Advance Searching***
-Inurl:
[inurl:] restrict the results to those with all of the query words in the URL.
—Intext:
[intext] can find the web pages that contains any of the query words. For instance [intext:ioe students] will result into the pages that contains any of “ioe” or “students”.
—Link:
This query [link:] will list the web pages that point to the URL or specified web page.
—Cache:
This query [cache:] will display Google's cached version of a web page.
—Info:
The query [info:] will show the information that Google has about the web page.
—Related:
The syntax [related:] lists the web pages that are similar or related to the URL.
So Finally advance searching tricks are :-
allintitle:Balance Score Card filetype:pdf
allintitle:munni Badnam filetype:mp3
allintitle:The Pirates of Silicon Valley filetype:flv
In c programming we made loop with help of conditional statements.The conditional statements use for looping in c programming are IF LOOP , WHILE LOOP and DO WHILE LOOP.
How many of us can make looping without using any conditional statements mentioned above.If i asked you guys to make looping program without using any conditional statements then you guys will ask me umm there is possible to do looping without using conditional.I also think that before i found this program and i don’t believe.But when i compile this code, I am enforce to believe it.
1: //looping without default loops(if, do, while, for)
2: #include<stdio.h>
3: #include<stdlib.h>
4: void (*func[2])(int);
5: void main(int n)
6: {
7: int i;
8: printf("\n %d",n);
9: func[0]=&exit;
10: func[1]=&main;
11: i = ++n <= 10;
12: (func[i])(n);
13: }
Another method for looping without using any loop in c programming is
1: ///this concept is also good
2:
3: #include <stdio.h>
4: #include <stdlib.h>
5: void main(int j) {
6: printf("%d\n", j);
7: (&main + (&exit - &main)*(j/1000))(j+1);
8: }