Wednesday, 16 December 2015

Estimated earnings showing 0$ on my Adsense account

Estimated YouTube earnings are no longer shown in Adsense as of April 1st 2013 - only finalized earnings will be added after the end of the month, by the 15th of the following month

To see your estimated earnings you'll need to look in YouTube Analytics

Steps to be followed to view your Youtube estimated earnings--

1. Login to your YouTube Dashboard
2. Go to Analytics > Estimated Earnings
3. Choose the time of which you want to see the estimated earnigs.

Wednesday, 9 September 2015

[SOLVED] Unable to boot Fedora 22 using Live USB Stick

Getting an error:

vesamenu.c32: not a COM32R image

When trying to boot Fedora 22 from live USB.

Steps to do:
1. Just hit TAB Button
2. Type in "linux0" or select it if option appears.
3. Hit Enter key and your Fedora will start to boot.

Program to demonstrate command line arguments in C - Addition of two numbers using command line arguments

Program:

#include<stdio.h>

void main(int argc, char * argv[]) {
   int i, sum = 0;

   if (argc != 3) {
      printf("You have forgot to type numbers.");
      exit(1);
   }

   printf("The sum is : ");

   for (i = 1; i < argc; i++)
      sum = sum + atoi(argv[i]);

   printf("%d", sum);

}


Best book for Database System

Fundamentals of Database System by Ramez Elmasri and Navathe.
Publication: Pearson
Link to the book: pearsoned.co.in/ramezelmasri