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 727925
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T06:37:22+00:00 2026-05-14T06:37:22+00:00

char *a = apple; printf(%s\n, a); // fine printf(%s\n, a[1]); // compiler complains an

  • 0
char *a = "apple";
printf("%s\n", a);  // fine
printf("%s\n", a[1]);  // compiler complains an int is being passed

Why does indexing a string pointer give me an int? I was expecting it to just print the string starting at position one (which is actually what happens when i use &a[1] instead). why do i need to get the address?

  • 1 1 Answer
  • 0 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-14T06:37:22+00:00Added an answer on May 14, 2026 at 6:37 am

    That’s just how the [] operator is defined – a[1], when a is a char *, fetches the next char after the one pointed to by a (a[0] is the first one).

    The second part of the puzzle is that char values are always promoted to int (or rarely, unsigned int) when passed as part of a function’s variable-length argument list.

    a is equivalent to &a[0], and it prints from the first character – so it makes sense that &a[1] would print starting from the second character. You can also just use a + 1 – that’s completely equivalent.

    If you use the %c conversion specifier, which prints a single character, you can use a[1] to print just the second character:

    printf("%c\n", a[1]);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

char c='c'; int i=10; double d =50; long l=30; String s=Goodbye; Are these statement
The following C program: #include <stdio.h> int main(void) { printf("%u %u %u\n",sizeof "",sizeof(""+0),sizeof(char *));
Consider this little program: #include <stdio.h> int main() { char c = 0xFF; printf(%d\n,
char *strtok(char *s1, const char *s2) repeated calls to this function break string s1
char *values = 3 1 4 15; vector<int> array; I want to populate the
{ char *a, *b; printf(%lx\n,(b-a)); } Usually works, in fact, I can't imagine it
char label[8] = abcdefgh; char arr[7] = abcdefg; printf(%s\n,label); printf(%s,arr); ====output========== abcdefgh abcdefgÅ Why
static char* theFruit[] = { lemon, orange, apple, banana }; I know the size
Hello is there a different way to convert a int back to a char
class{ public HashMap<String, String> eachperson; apple(){ this.eachperson.put(thekey,thevalue); } } (Please excuse the public/privates in

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.