For Quize Program in c

 #include<stdio.h>
 #include<conio.h>
 int main()
 {
    int count = 10, *temp, sum = 10;

   temp = &count;
      *temp = 20;
     temp = &sum;
        *temp = count;
       printf("count = %d, *temp = %d, sum = %d\n", count, *temp, sum );



getch();
return 0;
}