Monday, 12 October 2015

How to recover hidden Files from Virus infected USB Pendrive

                                Recover Hidden Files from Pendrive/Flash Drive/USB Drive
                                                  Files not showing in USB Drive/Pen drive
                                           Files changed to Shortcuts in Pendrive/USB Drive
                                           How to recover Lost files on Pendrive / USB Drive


Now a days all the people use USB Flash drives like Pendrive, 
External Hard Disk and Many more. They all skipped DVD, CD and 
all optical Disc because it takes time to copy and it cannot be 
reused. So USB Pendrives are now with all people. I used to see 
all over my college, they hang USB pendrive in their necks. They 
carry Music, Movies, Datas in that. How USB flash drives 
improves as the mean while USB virus also increases along with 
that.

If you have some nasty virus on USB drive that hide all your file in the drive? ie; hides your files and folders, creates exe file extensions of your folders and even corrupt your files. You can view these files by going to Tools>>Folder options ..But the attributes of these files often stay unchanged even if you uncheck hidden attribute on file/folder properties.


Here i going to tell the Permanent Solution for recovering hidden files by Command prompt in windows operating system

Step One:

Plug your USB Pendrive or External HDD or Memory Card which is 

Affected.

Step Two:

Go to Start -> Run-> Type CMD and Enter


Step Three:

Find the drive letter for the connected USB drive. For Example, g
:


In command prompt, type g:

and Hit enter. Command Prompt will show g:/

Step Four:

Then type


attrib -s -h /s /d *.*




Make sure that you put space between each elements in the code.

and hit enter and wait for few seconds.

Check the Screen Shot of Above Steps



Now check your USB pendrive you can see your files are back in their locations. If you have any doubts get our Solution Group at Facebook :www.facebook.com/blog2ufriend
and Like my Facebook page: https:www.facebook.com/blog2ufriend

WhatsApp Messenger on PC Download with Crack YouWave (5 Steps)

If You want registered  then Download From Bottom Given Link And read all instruction in side text
(1)
First of all you need to download YouWave software on your computer which is available for free over its official website. This software is a great alternative to BlueStacks and it’s a premium one.



(2)
Once you got installer file of You Wave downloaded then double click on that and then the process will begin. Start following the on screen instructions to finish the process from your side. All you need to do is click on Next, Next and Finish.
(3)
Start the YouWave then by double clicking on its desktop shortcut and once it begins then ou’ll find an option to start with FreeTrial. So opt that.


(4)
Launch Browser app within the Menu drawer and then open play.google.com URL.

(5)
Once Google play store is running then find out Whats App Messenger Android app.

(6)
lick on install option in front of Whats App Messenger app and within few minutes it will be installed. Before installation, it will ask you to login with your Google account. So use your pare
account here.
(7)
That’s it! The process is done and within few minutes app will be installed which you can start anytime like you started Browser app during the stages.

I hope you didn’t find any issues and liked this simple way of dealing with the installation of Whats App Messenger on PC using You Wave. Don’t hesitate in sharing it with your friends over social network now




Sunday, 11 October 2015

Puli Full Movie Download (2015) 425MB DVDScr Dual Audio [Hindi-Tamil]

Ratings: 6.0/10
Genre(s): Fantasy
Directed By: Chimbudeven
Released On: 30 September 2015
Movie Star Cast: Vijay, Sudeep, Sridevi

Synopsis:
Maru Dheeran is a meek child brought up in an enslaved village coming under the oppressive rule of the blue-eyed monstrous ‘Vedalam’ group who burden the people with enormous taxes and kill on whim. When his wife is kidnapped for sacrifice by the Vedalam Queen & her commander in-chief, Maru Dheeran takes a journey to their impenetrable fort in order to retrieve her and put an end to the tyranny.Puli (2015) Tamil Movie Hindi Dubbed Dual Audio 425MB








                                                ||Free Download Movie Via Single Resumable 431MB Links||
                
   

Saturday, 10 October 2015

Printf function questions and answer with solution

Printf objective types interview questions and answers  


(1)

#include<stdio.h>
#include<conio.h>
void main()
{
int a=5,b=6,c=11;
clrscr();
printf("%d %d %d");
getch();
}

What will output when you compile and run the above code?

(a)Garbage value garbage value garbage value
(b)5 6 11
(c)11 6 5
(d)Compiler error

Answer: (c)

(2)


#include<stdio.h>

void main()
{
char *str="CQUESTIONBANK";
clrscr();
printf(str+9);
getch();
}

What will output when you compile and run the above code?

(a)CQESTIONBANK
(b)CQUESTION
(c)BANK
(d)Compiler error


Answer: (c)

(3)


#include<stdio.h>
void main()
{
clrscr();
printf("%d",printf("CQUESTIONBANK"));
getch();
}

What will output when you compile and run the above code?

(a)13CQUESTIONBANK
(b)CQUESTIONBANK13
(c)Garbage CQUESTIONBANK
(d)Compiler error


Answer: (b)

(4)

#include<stdio.h>
#include<conio.h>
void main()
{
short int a=5;
clrscr();
printf("%d"+1,a);
getch();
}

What will output when you compile and run the above code?
(a)6
(b)51
(c)d
(d)Compiler error


Answer: (c)

(5)

#include<stdio.h>
void main()
{
int i=85;
clrscr();
printf("%p %Fp",i,i);
getch();
}

What will output when you compile and run the above code?

(a)85 85
(b)0055 034E:0055
(c)0055 FFFF:0055
(d)Compiler error


Answer: (b)

 (6)

#include<stdio.h>
static struct student
{
int a;
    int b;
    int c;
int d;
}s1={6,7,8,9},s2={4,3,2,1},s3;
void main()
{
s3=s1+s2;
clrscr();
printf("%d %d %d %d",s3.a,s3.b,s3.c,s3.d);
getch();
}
What will output when you compile and run the above code?
(a)6789
(b)4321
(c)10101010
(d)Compiler error


Answer: (d)

(7)

#include<stdio.h>
extern struct student
{
int a;
    int b;
    int c;
int d;
}s={6,7,8,9};

void main()
{
clrscr();
printf("%d %d %d %d",s.a,s.b,s.c,s.d);
getch();
}

What will output when you compile and run the above code?
(a)6789
(b)9876
(c)0000
(d)Compiler error


Answer: (a)

(8)

#include<stdio.h>
struct student
{
static int a;
register int b;
auto int c;
extern int d;
}s={6,7,8,9};
void main()
{
printf("%d %d % %d",s.a,s.b,s.c,s.d);
}

What will output when you compile and run the above code?
(a)6789
(b)9876
(c)0000
(d)Compiler error


Answer: (d)

(9)

#include<stdio.h>
struct student
{
int roll;
int cgpa;
int sgpa[8];
};
void main()
{
struct student s={12,8,7,2,5,9};
int *ptr;
ptr=(int *)&s;
clrscr();
printf("%d",*(ptr+3));
getch();
}
What will output when you compile and run the above code?
(a)8
(b)7
(c)2
(d)Compiler error


Answer: (c)
(10)
#include<stdio.h>
struct game
{
int level;
int score;
struct player
{
char *name;
}g2={"anil"};
}g3={10,200};
void main()
{
struct game g1=g3;
clrscr();
printf("%d  %d  %s",g1.level,g1.score,g1.g2.name);
getch();
}

What will output when you compile and run the above code?
(a)10 200 anil
(b)200 10 anil
(c)10 200 null
(d)Compiler error


Answer: (d)

(11)

#include<stdio.h>
struct game
{
int level;
int score;
struct player
{
char *name;
}g2;
}g1;
void main()
{
clrscr();
printf("%d  %d  %s",g1.level,g1.score,g1.g2.name);
getch();
}

What will output when you compile and run the above code?
(a)Garbage_value garbage_value garbage_value
(b)0 0 (null)
(c)Run time error
(d)Compiler error

Answer: (b)

C questions in Linux

C Linux interview questions and answers


(1)What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    int a=5;
    printf("%d %d %d",a++,a++,++a);
    return 0;
}

Output:

In LINUX GCC compiler

7 6 8
In TURBO C
7 6 6

Hints: In Turbo c parameter is passed from right to left in printf

function but not in the Linux.


(2)What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    int a=5,b=10,c=15,d=20;
    printf("%d %d %d");
        return 0;
}

Output:
In LINUX GCC compiler
Garbage values
In TURBO C
5 10 15

Hints: Local variables stores in the stack.

(3) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    int i=5,j=5,y;
    int x=++i + ++i + ++i;
    y=++j + ++j + ++j;
    printf("%d  %d  %d %d",x,y,i,j);
    return 0;
}

Output:

In LINUX GCC compiler

22  22  8  8
In TURBO C
21  24  8  8

(4) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
        int  near *p;
        int  far *q;
        int  huge *r;
        printf("%d  %d  %d",sizeof(p),sizeof(q),sizeof(r));
        return 0;
}

Output:
In LINUX GCC compiler
Compilation error
In TURBO C
2  4  4

Note: In Linux there is not any concept of near, far and huge

pointers

(5) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    char *p;
    int *q;
    float **r;
    printf("%d  %d  %d",sizeof(p),sizeof(q),sizeof(r));
    return 0;
}

Output:

In LINUX GCC compiler

4  4  4
In TURBO C
2  2  2

Hints: size of any type of pointer in Linux is 4 and in turbo c is 2.

(6) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    short int a=5;
    int b=5;
    long int c=5l;
    float d=5.0f;
    double e=5.0;
    long double f=5.0L;
    char g='5';
    printf("Size of short int: %d\n",sizeof(a));
    printf("Size of int: %d\n",sizeof(b));
    printf("Size of long int: %d\n",sizeof(c));
    printf("Size of float: %d\n",sizeof(d));
    printf("Size of double: %d\n",sizeof(e));
    printf("Size of long double: %d\n",sizeof(f));
    printf("Size of char: %d\n",sizeof(g));
        return 0;
}

Output:

In LINUX GCC compiler

Size of short int: 2
Size of int: 4
Size of long int: 4
Size of float: 4
Size of double: 8
Size of long double: 12
Size of char: 1
In TURBO C
Size of short int: 2
Size of int: 2
Size of long int: 4
Size of float: 4
Size of double: 8
Size of long double: 10
Size of char: 1

(7) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
    int main(){
        int a=300;
    char *p=(char *)&a;
        printf("%d\n",*p);
    printf("%d",*++p);
        return 0;
}

Output:

In LINUX GCC compiler

44
1
In TURBO C
44
1

(8) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    char c='A';
    printf("%d   %d",sizeof(c),sizeof('A'));
    return 0;
}

Output:
In LINUX
1  4
In TURBO C
1  2

(9) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    enum color{RED,BLUE,GREEN=-2,YELLOW,PINK};
    printf("%d  %d",BLUE,PINK);
    return 0;
}

Output:

In LINUX GCC compiler

1 0
In TURBO C
1 0

(10) What will be output if you will execute following program by

gcc compiler in Linux?

#include<stdio.h>
int main(){
    char c=127;
    printf("%d",++c);
    printf("  %d",++c);
    return 0;
}

Output:

In LINUX GCC compiler

-128 -127
In TURBO C
-128 -127
Hints: char data type cyclic property.