sizeof refers to the Standard C/C++ operator for returning the size in bytes of an expression or datatype.
1
vote
3answers
397 views
Sizeof() difference between C++ on PC and Arduino [duplicate]
Possible Duplicate:
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
In the following code, the value of structSize is different depending on whether it's executed ...
0
votes
2answers
367 views
Is it safe to assume sizeof(double) >= sizeof(void*)?
Is it safe to assume that sizeof(double) will always be greater than or equal to sizeof(void*)?
To put this in some context, is the following portable?
int x = 100;
double tmp;
union {
double ...
2
votes
2answers
396 views
C++ How to get sizeof(enum) == sizeof(char)?
I would like to know how.
I have looked at this topic, and I understand that "The choice of type is implementation-defined.", but I am curious to know how to get 1 instead of 4.
0
votes
2answers
114 views
using sizeof() within a member function [duplicate]
Possible Duplicate:
How to find the sizeof(a pointer pointing to an array)
Sizeof array passed as parameter
I have this code:
class total {
public:
void display(int []);
};
void ...
-2
votes
4answers
200 views
Why does sizeof operator fail to work inside function template?
I am trying to learn C++ function templates.I am passing an array as pointer to my function template. In that, I am trying to find the size of an array. Here is the function template that I use.
...
1
vote
4answers
100 views
Why the array size is 1 [duplicate]
Possible Duplicate:
Sizeof an array in the C programming language?
I'm trying to write a function that return 1s if a value is in the array. Here's the code:
int inArrayInt(int iVal, int ...
0
votes
1answer
108 views
array alignment/sizeof() returning extra values
The following bit of code...
void foo(char* x)
{
int i;
int len = sizeof(x)/sizeof(x[0]);
printf("len: %d\n", len);
for(i=0; i<len; i++){
...
2
votes
2answers
473 views
What does sizeof (int) * p semantically mean?
What does sizeof (int) * p semantically mean? Is it:
1. sizeof( (int) *p )
or
2. ( sizeof(int) ) * p
and what rule makes the expression to be evaluated this way?
1
vote
2answers
202 views
C: Explain sizeof behaviour [duplicate]
Possible Duplicate:
Size of character ('a') in C/C++
Can someone explain why in C sizeof(char) = 1 and sizeof(name[0]) = 1 but sizeof('a') = 4?
name[0] in this case would be char ...
0
votes
2answers
238 views
Size of a C struct [duplicate]
Possible Duplicate:
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
I have a simple C struct defined like this:
typedef struct LMWinData {
UInt8 ...
4
votes
5answers
184 views
Inconsistent sizeof behavior in C [duplicate]
Possible Duplicate:
Behaviour of Sizeof in C
Can somebody explain why the following piece of C code behaves as it does:
#include <stdio.h>
int sizeof_func(int data[]) {
return ...
4
votes
4answers
377 views
Why is sizeof(int) different than sizeof(int*)?
I am wondering why in the following program sizeof(int) returns a different value than sizeof(int*).
Here is the small program:
int main(){
std::cout<<sizeof(int)<<endl;
...
3
votes
3answers
115 views
Why is sizeof(type) the size of a pointer, not the size of the type itself?
In this code, why is sizeof(x) the size of a pointer, not the size of the type x?
typedef struct {
...
} x;
void foo() {
x *x = malloc(sizeof(x));
}
2
votes
3answers
142 views
Is sizeof() recursive?
The answer should be simple, but I wanted to make sure.
Is sizeof() recursive? For instance,
struct foo
{
DWORD a;
DWORD b;
};
struct bar
{
DWORD c;
foo d;
};
would a sizeof(bar) ...
4
votes
3answers
129 views
Windows 64-bit struct size varies with contained data type?
I have two different data structs that should, in principle, have the same size, and I'm wondering why they do not.
struct pix1 {
unsigned char r;
unsigned char g;
unsigned char b;
...
0
votes
3answers
195 views
Complex Declaration of Sizeof operator in c
I have seen this complex declaration of sizeof operator somewhere in book which is teasing me ---->
#define SIZEOF(int) (int)&((int *)0)[1]
Can any one explain this declaration, whats ...
-1
votes
6answers
260 views
same pointer showing different sizes in different compilers
I have run the following code on Turbo C compiler and
GNU compiler:
int main()
{
char *cptr;
printf("%d\n",sizeof(cptr));
return 0;
}
and I had output '2' on the Turbo C run and output ...
-1
votes
4answers
470 views
Portable way to find size of a packed structure in C
I'm coding a network layer protocol and it is required to find a size of packed a structure defined in C. Since compilers may add extra padding bytes which makes sizeof function useless in my case. I ...
3
votes
3answers
2k views
C++: size of a char array using sizeof
Look at the following piece of code in C++:
char a1[] = {'a','b','c'};
char a2[] = "abc";
cout << sizeof(a1) << endl << sizeof(a2) << endl;
Though sizeof(char) is 1 byte, ...
3
votes
3answers
234 views
integer ranges using sizeof operator
Consider this:
1. printf(“%d”, sizeof(32767));
2. printf(“%d”, sizeof(-32767));
3. printf(“%d”, sizeof(-32768));
1 and 2 yielded the result as 2 while the third statement yielded a 4. but the range ...
1
vote
2answers
105 views
about sizeof() class of different type [duplicate]
Possible Duplicate:
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
why the output is 8?
not sizeof(int)+sizeof(char) = 5?
class CBase
{
int a;
char ...
0
votes
1answer
248 views
C++ Size of Struct with Vectors as Members
I have a struct which has some vectors as members:
struct my_struct
{
std::vector<int> x;
// more members here
};
and an instance of my_struct:
my_struct A;
The vector(s) inside the ...
1
vote
3answers
303 views
Difference of sizeof between char* x and char x[]
I know some difference between char* and char[].
char x[] = "xxxx"
Is an array of chars;
char *y = "xxxx"
is a pointer to the literal (const) string;
And x[4]=='\0', and *(y+4) == '\0' too.
So why ...
0
votes
1answer
142 views
c++ sizeof giving an error unhandled exception at
This is just a basic print a sentence array string. I am new to c++ only used JAVA and similar languages never c before. Trying to learn it by going through every different sort algorithm and data ...
-4
votes
2answers
323 views
sizeof(bool) g++ vs vc++ [duplicate]
Possible Duplicate:
Is sizeof(bool) implementation defined in C++?
Im writing code that is compiled in vc++ with a g++ lib (libpng) and need to know if bool is the same size and bits in g++ ...
0
votes
1answer
121 views
sizeof operation on char array [duplicate]
Possible Duplicate:
How to find the sizeof(a pointer pointing to an array)
Sizeof an array in the C programming language?
#include<stdio.h>
void doit(char x[10]){
...
-3
votes
1answer
233 views
How can I determine the size of an array in C? [duplicate]
Possible Duplicate:
How to find the sizeof(a pointer pointing to an array)
I tried this code:
#include<stdio.h>
int dime(int v[]){
int i= sizeof v / sizeof *v;
return i;
}
...
6
votes
2answers
228 views
Behaviour of sizeof operator in C
I am getting unusual behaviour with my code, which is as follows
#include<stdio.h>
struct a
{
int x;
char y;
};
int main()
{
struct a str;
str.x=2;
str.y='s';
printf("%d ...
5
votes
5answers
160 views
calling sizeof on a function call skips actually calling the function!}
I happened to stumble across this piece of code.
int x(int a){
std::cout<<a<<std::endl;
return a + 1;
}
int main()
{
std::cout<<sizeof(x(20))<<std::endl;
...
0
votes
3answers
197 views
How can I find the number of elements in an array?
I have an int array and I need to find the number of elements in it. I know it has something to do with sizeof but I'm not sure how to use it exactly.
0
votes
2answers
123 views
Invalid sizeof() struct, gap between members
I have a struct like this:
typedef struct _HEADER_IO
{
uint8_t field1 : 2;
uint8_t field2 : 4;
uint8_t field3 : 1;
uint8_t field4 : 1;
uint16_t field5;
...
4
votes
3answers
111 views
Getting the number of static attributes in a class
I have a class consisting solely of static attributes acting as a sort of poor man's singleton. The purpose of which is to collect statistics from various points in the application. For our unit tests ...
3
votes
4answers
5k views
What should be the sizeof(int) on a 64-bit machine? [duplicate]
Possible Duplicate:
size of int, long, etc
Does the size of an int depend on the compiler and/or processor?
What decides the sizeof an integer?
I'm using a 64-bit machine.
$ uname -m
...
1
vote
1answer
288 views
Invalid structure size when marshalling c structure to .NET
I'm experiencing a problem with the following c-structure:
typedef struct tagTEXTUREPROP
{
DWORD dwSize;
DOUBLE eGloss;
DOUBLE eContrast;
BOOL bRepeat;
DOUBLE eDropX;
DOUBLE ...
5
votes
8answers
661 views
Write raw struct contents (bytes) to a file in C. Confused about actual size written
Basic question, but I expected this struct to occupy 13 bytes of space (1 for the char, 12 for the 3 unsigned ints). Instead, sizeof(ESPR_REL_HEADER) gives me 16 bytes.
typedef struct {
unsigned ...
1
vote
4answers
280 views
Is sizeof char ** pointer dependent on the architecture of machine?
When I execute the following code:
int main()
{
char **temp;
printf("Size of **temp %d", sizeof(**temp));
printf("Size of *temp %d", sizeof(*temp));
printf("Size of temp %d", ...
9
votes
6answers
503 views
How sizeof(array) works at runtime?
I have read that sizeof operator in C is interpreted at compile time and since at compile time compiler knows the array size and its type,sizeof is abled to compute the number of bytes occupied by ...
1
vote
3answers
383 views
converting size_t into long, Is there any disadvantage?
Is there any disadvantage of converting size_t to long? Because, I am writing an program that maintains linked_list in a file. So I traverse to another node based on size_t and I also keep track of ...
2
votes
0answers
40 views
How can I find the size of a struct from a System.Type? [duplicate]
Possible Duplicate:
Get the sizeof a struct given the System.Type
Given a System.Type of a value type, how can I find its size?
// this works with a type identifier in an unsafe construct:
...
1
vote
3answers
450 views
Getting size of LPTSTR or CHAR* containing hex values
I'm trying to get the size of LPTSTR variable and a CONST CHAR variable using the below code but im not able to get the proper size. i'm suppose to get 20 but i'm getting 0 and 4 for cont char ...
0
votes
3answers
149 views
Questions about memory alignement in structures and portability of the sizeof operator
I have a question about structure padding and memory alignment optimizations regarding structures in C language. I am sending a structure over the network, I know that, for run-time optimizations ...
7
votes
4answers
3k views
Sizeof vs Strlen
#include "stdio.h"
#include "string.h"
main()
{
char string[] = "october";
strcpy(string, "september");
printf("the size of %s is %d and the length is %d\n\n", string, sizeof(string), ...
1
vote
2answers
177 views
Difference between sizeof(str -1) and sizeof(str) -1?
I came across sizeof(str -1) a couple of time on net but never used it myself. I am just curious what is the difference between sizeof(str-1) and sizeof(str) -1 where str is the character array say ...
0
votes
5answers
98 views
base class, inheritate class sizeof()
Why, in the following code, is sizeof(X) == 4 and sizeof(Y) == 8?
Moreover, in the class X, why do the member functions not take any memory space?
class X {
int i;
public:
X() { i = 0; }
...
1
vote
5answers
106 views
What is the size of ( variable = &anotherVar )
What is the size of ( variable = &anotherVar )
int y = 10; // the size of y is 4 bytes
int & x = y; // what is the size of x that receives the address of y
2
votes
2answers
320 views
Whats the working difference between a signed char pointer and an unsigned one?
I can understand the difference between a signed char and an unsigned one. But dont the pointers of the corresponding type equivalent in their operation? Cos sizeof(char) and sizeof(unsigned char) is ...
4
votes
2answers
322 views
Why isn't the size of a record equal to the sum of the sizes of its fields?
I have next code:
type TRecord1 = record
myarr: array [0..31] of single:
end;
type TRecord2 = record
b1, b2, b3, b4, b5, b6: byte;
end;
type TRecord3 = record
myarr: array [0..31] of single: ...
0
votes
3answers
141 views
sizeof() of 2 dimensional charecter array shows wrong o/p
This programme shows only one output "Hiii" if the size of the words array is not passed from the main function.
If size is generated inside disp function shows
Size: 48
Size: 2
Hiii
If size is ...
0
votes
3answers
2k views
Get size of pointer in C
How do I get the size of a pointer in C using sizeof? I want to malloc some memory to store a pointer (not the value being pointed to).
Sorry if this has been asked before, but the search results are ...
-4
votes
3answers
273 views
C sizeOf operator : Want to make myOwnSizeOf( ) function
We are all familiar with working of sizeof operator in C language. I am trying to make a similar working function that will absorb any kind of datatype and return me its size.
Can somebody tell me ...
