#include "usefunc.h" //don't worry about this -> lib i wrote
int main()
{
  int i;
  string given[4000], longest = "a"; //declared new typdef. equivalent to 2D char array
  given[0] = "a";
  printf("Please enter words separated by RETs...\n");
  for (i = 1; i < 4000 && !StringEqual(given[i-1], "end"); i++)
    {
      given[i] = GetLine();
      /*
      if (sizeof(given[i]) > sizeof(longest))
    {
      longest = given[i];
    }
      */
      printf("%lu\n", sizeof(given[i])); //this ALWAYS RETURNS EIGHT!!!
    }
  printf("%s", longest);
}

why does it always return 8???

link|improve this question

If string a typedef for char*? – KitsuneYMG Feb 9 '11 at 3:57
typedef, excuse me. C – tekknolagi Feb 9 '11 at 3:57
What is string? – Peyman Feb 9 '11 at 3:57
You have other problems here. The code is malformed, with an unsyntactic for statement and an unmatched */, and it's not clear what i is in your printf statement. – Jim Balter Feb 9 '11 at 4:04
what the...it didn't paste correctly – tekknolagi Feb 9 '11 at 4:07
feedback

4 Answers

up vote 7 down vote accepted

There is no string data type in C. Is this C++? Or is string a typedef?

Assuming string is a typedef for char *, what you probably want is strlen, not sizeof. The 8 that you are getting with sizeof is actually the size of the pointer (to the first character in the string).

link|improve this answer
it then says incompatible pointer type :( – tekknolagi Feb 9 '11 at 3:57
We're going to need to see how you define string then, because it's not a char *. – Kevin Feb 9 '11 at 3:59
@tekknolagi: Why don't you post the definition of that typedef? – Anon. Feb 9 '11 at 4:00
strlen works! never mind I just redefined some things – tekknolagi Feb 9 '11 at 4:06
feedback

It is treating it as a pointer, the sizeof a pointer is obviously 8bytes = 64 bits on your machine

link|improve this answer
thank you -> though strlen() does not work because it keeps saying incompatible pointer type – tekknolagi Feb 9 '11 at 3:58
feedback

You say "don't worry about this -> lib i wrote" but this is the critical piece of information, as it defines string. Presumably string is char* and the size of that on your machine is 8. Thus, sizeof(given[i]) is 8 because given [i] is a string. Perhaps you want strlen rather than sizeof.

link|improve this answer
thank you -> see other comment about strlen though – tekknolagi Feb 9 '11 at 3:58
@tekknolagi We need to see exactly how string is defined. – Jim Balter Feb 9 '11 at 4:00
feedback

What is 'string'. Until you show us the definition of the 'string' datatype we cannot answer your question effectively.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.