Strings - Programming

Q1:

What will be the output of the program ?
#include<stdio.h>

int main()
{
    printf(5+"AptitudeCrack\n");
    return 0;
}

A Error

B AptitudeCrack

C Aptitude

D None of above

ANS:C - Aptitude

printf(5+"AptitudeCrack\n"); In the printf statement, it skips the first 5 characters and it prints "Aptitude"