Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 950637
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T23:35:57+00:00 2026-05-15T23:35:57+00:00

How is the following line interpreted by GCC compiler: printf(HELLO); I want to know

  • 0

How is the following line interpreted by GCC compiler:

printf("HELLO");  

I want to know this because when I am running following program:

main()  
{  
    printf(5+"Good Morning");  
}  

The program is printing:

Morning

Why is the compiler is starting the printing from the sixth character?

  • 1 1 Answer
  • 3 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T23:35:58+00:00Added an answer on May 15, 2026 at 11:35 pm

    There are a lot of things happening here. As others have said, printf() doesn’t ‘know’ anything about the expression 5+"Good Morning". The value of that expression is determined by the C language.

    First, a+b is the same as b+a, so 5+"Good Morning" is the same as "Good Morning"+5.

    Now, the type of "Good Morning" (i.e., a string literal) is an “array of char“. Specifically, "Good Morning" is a 13-character array (12 “regular” characters, followed by a 0). When used in most expressions, the type of an array in C “decays” to a pointer to its first element, and binary addition is one such case. All this means that in "Good Morning"+5, "Good Morning" decays to a pointer to its first element, which is the character G.

    Here is how the memory looks like:

      0   1   2   3   4   5   6   7   8   9   0   1   2
    +---+---+---+---+---+---+---+---+---+---+---+---+---+
    | G | o | o | d |   | M | o | r | n | i | n | g | 0 |
    +---+---+---+---+---+---+---+---+---+---+---+---+---+
    

    The value of the address of G plus 5 is a pointer that points to 5 locations from G above, which is M. So, printf() is getting an address that is at M. printf() prints that till it finds a 0. Hence you see Morning as output.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following line: 14:48 say;0ed673079715c343281355c2a1fde843;2;laka;hello ;) I parse this by using a
I want to compile the following line of code from http://code.google.com/p/enhsim : enh::eout <<
I had the following line snippet of code that searches for a propery of
Consider the following line of code: private void DoThis() { int i = 5;
I have the following line of code in a link on my webpage: <a
I am currently calling the following line of code: java.net.URL connection_url = new java.net.URL(http://<ip
I've run across the following line in a VB6 application. mobjParentWrkBk.ExcelWorkBook.Application.Selection.Insert Shift:=xlToRight Unfortunately Google
I have a project that has the following line in the additional includes section:
I'm having problem in the following line: rd.PrintOptions.PaperSize = PaperSize.PaperFanfoldStdGerman; it throws an exception
I have an XML file with the following line: <VALUE DECIMAL_VALUE=0.2725 UNIT_TYPE=percent/> I would

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.