sizeof refers to the Standard C/C++ operator for returning the size in bytes of an expression or datatype.
2
votes
3answers
60 views
The sizeof several casts
Why does the function sizeof not return the same size when its getting used on the struct itself?
I need to cast it because of a winsock program that im working on.
Thanks for any help, true.
...
-1
votes
2answers
61 views
sizeof(array) / sizeof(int) [duplicate]
Within a function I have declared an array:
int char_count_array[118] = {0};
Later on, I pass this array to a function and calculate the following:
int xx = sizeof(char_count_array);
int xy= ...
2
votes
2answers
44 views
C++ fread: unsigned char and short mixture
I have a sample code here:
unsigned char *m_fbytes;
m_fbytes = (unsigned char*)malloc(m_iByteLen1FrameDecoded*sizeof(short));
int err;
err = fread(m_fbytes, sizeof(short), 960, fin);
...
1
vote
1answer
24 views
Size of type and memory allocation [duplicate]
I've got a trouble with dynamic memory allocation.
Somehow, actual size of my struct (sum of all the parts) is less than size of the type itself. Here is the code:
#include <stdio.h>
#include ...
1
vote
3answers
50 views
Why is forward declaration of structure not working in my code? When can it be used in C?
Isn't forward declaration, whether for structures or functions, supposed to do what forward declaration is expected to do, ie, to let us use the structure or function before they are defined? Why is ...
4
votes
3answers
145 views
Does the unsigned keyword affect the result of sizeof?
Do C and C++ guarantee that the unsigned equivalent of a type has the same size?
Example:
size_t size = sizeof(unsigned int);
Is the unsigned completely moot here?
-2
votes
1answer
49 views
about sizeof(char *) and sizeof(char[]) [duplicate]
char *str1 = "pupupupu";
char str2[] = "pupupupu";
printf("%s\t%d\n", str1, (int)sizeof(str1));
printf("%s\t%d\n", str2, (int)sizeof(str2));
Output:
pupupupu 8
pupupupu 9
My question: Why ...
-2
votes
4answers
71 views
C++ simple sizeof difference between char array and char pointer
char * test = "test";
cout << sizeof(test);
char test2[] = "test";
cout << sizeof(test2);
Running this on visual studio 2010, why is the output 45?
Shouldn't test be a string literal ...
1
vote
3answers
87 views
Reliably determine the size of char
I was wondering how to reliably determine the size of a character in a portable way. AFAIK sizeof(char) can not be used because this yields always 1, even on system where the byte has 16 bit or even ...
2
votes
1answer
106 views
Why does sizeof(argv)/sizeof(argv[0]) give me the size of an array in C++?
If I have an array as an argument in main
int main(int argc, char* argv[])
why will
sizeof(argv)/sizeof(argv[0])
always reliably give me the length of the array?
2
votes
2answers
58 views
For any string “char name[10]=”test“”,is strlen(name)+1 always guaranteed to be same as sizeof(name)?
For a string name[],can we use strlen(name)+1 and sizeof(name) interchangeably in our code without second thought?Aren't they same?I checked about it and found out even the return type for both is ...
3
votes
2answers
42 views
Why is absence of array index in “extern char name[]” not affecting strlen(name) but causing error for sizeof(name)?
Now,from what I understand,the extern in the declaration of name[] tells the compiler that its definition is somewhere else (In my program,I have defined it below the part where I have used it).But ...
1
vote
4answers
82 views
Why is sizeof working for return types
I cannot find information about a behavior of sizeof (at least in gcc 4.6+). The following code works and produces the "expected" result (4, 1, 8), but I'm wondering why. I checked several questions ...
2
votes
1answer
94 views
Do I have the guarantee that all pointers have the same size in bytes? [duplicate]
In C and C++, do I have the guarantee that all pointers have the same size in bytes, or in other words :
sizeof(void*) = sizeof(char*) = sizeof(int*) = ...
or there are some akward systems on which ...
1
vote
4answers
88 views
why 'Sizeof' value differs from the number of bytes before the flexible-length member of a struct?
typedef struct {
/*has 15 pointers*/ // ==> 15 x 4 = 60 bytes ;
uint16_t; // ==> 2 bytes
uint16_t array[];
} dummy_struct;
CASE-A) sizeof(dummy_struct) returns 64 bytes
...
7
votes
6answers
119 views
What happens here? sizeof(short_int_variable + char_variable)
#include <stdio.h>
int main()
{
short int i = 20;
char c = 97;
printf("%d, %d, %d\n", sizeof(i), sizeof(c), sizeof(c + i));
return 0;
}
...
2
votes
4answers
39 views
PHP count of array returns more than it should?
This is my code:
$dir = "img/";
$files = scandir($dir);
for ($i=0; $i <= count($files); $i++) {
echo $files[$i]."<br/>";
}
echo count($files);
count of array returns value of 2 on ...
0
votes
3answers
39 views
What do we have in the bytes beginning at the “Address of a function”?How to know how many bytes to consider?
My brain gets numb just even imagining this.So bear with me if my question is little wordy.So I've sliced my question into parts.
1) What do we have at the at the bits/bytes starting at the address ...
0
votes
1answer
53 views
sizeof returns wrong value if argument is passed via function
Let me ask my question by this test program:
#include <iostream>
void testSizeOf(char* buf, int expected) {
std::cout << "buf sizeof " << sizeof(buf) << " expected " ...
15
votes
1answer
363 views
Why might a struct store its own size?
I am taking my first look into the Windows API and upon encountering WNDCLASSX I couldn't help wondering why its member, cbSize, existed. The description of cbSize, per the MSDN is: The size, in ...
0
votes
2answers
52 views
Java TextArea Get Possible Amount of Characters at Line
I would like to know if its possible to know how many characters a line can have programatically. I already searched but didn't found any useful..
Basically I want to fill a line with the same ...
1
vote
4answers
94 views
What's the most appropriate way to sizeof a struct
I've seen 3 different ways to sizeof a struct in C.
typedef struct A {
int a, b;
} A;
sizeof(A); // method 1
sizeof(struct A); // method 2
A *p;
sizeof(*p); // method 3
Which one is the ...
0
votes
4answers
38 views
Different sizes for same structure with different ordering in types
//I made these 2 structs
struct Book1
{
int genre;
int year;
char* author;
};
struct Book2
{
int genre;
char* author;
int year;
};
//in my main function ...
0
votes
1answer
51 views
Is unsigned long long fixed to an int(4 byte) range, if so, why is it 8 bytes in memory?
Edit: Stupid question, I overlooked the format identifiers.
I had a program grab the size of a few unsigned types and their maximum value. This brought an anomaly to my attention, the fact that even ...
0
votes
2answers
49 views
Different array sizes [duplicate]
When I run the following program, I get different array sizes. I tired different ways but the result is the same, what could io be doing wrong ?
#include<stdio.h>
void array_size(char *a[])
...
-4
votes
4answers
68 views
Difference between sizeof(struct tag *) and sizeof(struct tag)
struct student_simple
{
int rollno;
char *name;
};
difference between
struct student_simple *s2 = malloc(sizeof(struct student_simple *));
struct student_simple *s3 = ...
2
votes
1answer
60 views
Size of pointer array inside Struct
I have these 2 structs :
typedef struct {
char name[20];
int num;
int score;
} player;
typedef struct {
char name[20];
player *players;
} team;
I need to know the amount of ...
2
votes
3answers
72 views
Size of array defined with new? [duplicate]
Is there a function (that could be written) which allows to know the size of an array defined with new:
int *a=new int[3];
*a=4;
*(a+1)=5;
*(a+2)=6;
Thanks!
1
vote
2answers
60 views
Getting size of an array in C [duplicate]
I have an example as follows:
I have a struct:
typedef struct e{
int *(array[2]); <---in my case this array is a [2][69]
}Example;
and then this if i have a function such as:
int ...
4
votes
6answers
109 views
About sizeof of a class member function pointer [duplicate]
Let's say we have a class A
class A;
and these typedefs
typedef void (A::*a_func_ptr)(void);
typedef void (*func_ptr)(void);
My question is why sizeof(a_func_ptr) returns 16, while ...
3
votes
4answers
92 views
How can I calculate the number of elements in a char array?
I was trying to calculate the number of elements in an array, and was told that the line
int r = sizeof(array) / sizeof(array[0])
would give me the number of elements in the array. And I found the ...
1
vote
2answers
103 views
Can't output int as result of sizeof()
I'm lloking to write a program in C++ which will sync two directories for me, and for part of it I need to get the size of an char array. The code I'm using is below
#include <iostream>
...
3
votes
2answers
211 views
Find size of array without using sizeof in C
I was searching for a problem to find the size of an array in c without using sizeof in c and i found the following code:
int main ()
{
int arr[100];
printf ("%d", (&arr)[1] - arr);
...
0
votes
1answer
51 views
Why does this C sizeof function show different values in different contexts? [duplicate]
Some context: iOS app development. Objective-C code in Xcode.
This one has been confounding me for hours:
I have a little struct I created:
struct EIVertex {
GLKVector3 P;
GLKVector3 ...
1
vote
2answers
55 views
How can I maintainably determine sizeof(struct …)s?
Say I have a structure:
struct myStruct
{
int a;
short b;
char c;
};
In Windows, MSDN states that int takes 4 bytes, short takes 2 bytes and char takes 1 byte. This totals up to 7 ...
0
votes
1answer
36 views
How to get aligned size of CLR blittable struct?
I am making a class similar to SafeBuffer targetting .NET 2.0. One of the functions is void ReadArray<T>(long position, T[] array, int offset, int count) (or WriteArray) which reads/writes a ...
8
votes
5answers
266 views
Why do books say, “the compiler allocates space for variables in memory”?
Why do books say, "the compiler allocates space for variables in memory". Isn't it the executable which does that? I mean, for example, if I write the following program,
#include <iostream>
...
0
votes
1answer
96 views
How heavy is QObject really? [duplicate]
I recently posted a question about the overhead of QObject in typical usage scenarios, but unfortunately the question got closed as a duplicate of another question that didn't technically answer the ...
0
votes
5answers
79 views
How to get char array size in this case?
I'm with this doubt: how to get the size of a char array in this case:
#include<stdio.h>
void f(char * x)
{
printf("Size %d\n", sizeof(x)/sizeof(char));
}
main()
{
char x[5] = {'a', 'e', 'i', ...
0
votes
1answer
39 views
Using fwrite() to write from pointers
This question was asked quite a lot, but specifically in regards to structs containing pointers, and never helped my situation fully. What I'm trying to do, is strtok() the first and only command line ...
1
vote
2answers
82 views
sizeof in struct [duplicate]
#include <stdio.h>
#include <string.h>
#include <malloc.h>
struct Student {
char name[100];
int id;
char major[50];
char address[200];
};
int main()
...
1
vote
1answer
69 views
C: Implementing string literals with their size in a table
I am looking for the most elegant implementation of string literals with their size in a table in C. The main point is that I want the compiler to calculate sizeof("Some String Literal") during ...
0
votes
2answers
97 views
Access violation writing location in C++
First time writing here. I've seen several other questions like mine, but couldn't solve my problem. I have 4 classes : Song, Playlist, Album, Artist. Playlist consist of array of songs. Album ...
0
votes
1answer
75 views
C++ static arrays and sizeof operator
As I know sizeof is compile time operator, so why does this code compile and run correctly without any warnings?
#include <iostream>
int main() {
int size;
std::cin ...
0
votes
1answer
53 views
MVC 11.0 - Wrong structure size? [duplicate]
I have found such strange thing: for the MasterBootRecord structure
//
typedef unsigned char Byte;
typedef unsigned short int Word;
typedef unsigned int Dword;
//
typedef struct
{
Byte ...
1
vote
2answers
78 views
Find size of input char* and copy portion to output char* C
I have a char array LL,4014.84954 that I send into a function like this example:
#include <stdio.h>
#include <math.h>
void myFunction(char* in_string, char* out_string) {
...
3
votes
2answers
41 views
sizeof for a matrix of strings
The comments fairly explains it all. Help?
string aZOM[][2] = {{"MoraDoraKora", "PleaseWorkFFS"},{"This is a nother strang.", "Orly?"}};
cout << sizeof("MoraDoraKora") <<" \n";
...
0
votes
0answers
41 views
How do I create a buffer for this in order to test if there are still arguments available?
while (sizeof(cmds[x]) > 0){
here:
if (cmds[x][y] == " "){
y++;
goto here;
}
else argvector[x][y] = cmds[x][y];
}
x++;
y = 0;
goto nextCMD;
This is part of a ...
2
votes
4answers
118 views
sizeof a pointer
int i=0;
int *p = &i;
std::cout<<sizeof(i)<<" vs "<<sizeof(p)<<"\n";
char c='0';
char*pc = &c;
std::cout<<sizeof(c)<<" vs "<<sizeof(pc)<<"\n";
...
0
votes
1answer
23 views
Number of characters in pointer
This is very simple but I forgot since the last time i did it was two months ago. I want to know how you find the number of characters (letters) in a string pointer. I tried to use sizeof() and ...







