0
votes
8answers
480 views
size of a datatype without using sizeof
Hi all
I have a datatype say X and I want to know its size without declaring a variable or pointer of that type and of course without using sizeof operator.
Is this possible.
I tho …
4
votes
4answers
63 views
MSVC: what compiler switches affect the size of structs?
I have two DLLs compiled separately, one is compiled from Visual Studio 2008 and one is a mex file compiled from matlab.
Both DLLs have a header file which they include. when I tak …
1
vote
3answers
57 views
My buffer contains elements, but aren’t being printed…
Sorry scratch my last post, it's way to late =S
But basically I'm having problems sending out the buffer I created. Just need to know where I'm going wrong =( or if theres a better …
1
vote
2answers
71 views
How to catch bugs of the form sizeof(#define)
I'm sure there are sometimes good reasons for taking the sizeof() a #define in C, but I occasionally come across bugs where someone has taken the sizeof() a #define instead of the …
2
votes
5answers
135 views
What am I missing in the following program?
#include<stdio.h>
#define TOTAL_ELEMENTS (sizeof(array) / sizeof(array[0]))
int array[] = {23, 34, 12, 17, 204, 99, 16};
int main() {
int d;
for (d = -1; d < …
3
votes
3answers
152 views
Why can’t I use sizeof in a preprocessor condition ?
I understand that sizeof is an operator, which is evaluated at compile time to an integer constant.
But it seem it can not be used in the #if preprocessor directive like:
#if 4 == …
2
votes
5answers
163 views
Getting the size of the data of a Pointer
I tried the following code in order to see how to get size of the data of a pointer:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
…
2
votes
3answers
133 views
C sizeof char* array
I have a char* array as follows:
char *tbl[] = { "1", "2", "3" };
How do I use the sizeof operator to get the number of elements of the array, here 3?
The below did work, but …
1
vote
8answers
200 views
What arguments does the sizeof operator take in C?
[Original title referred to 'sizeof function'.]
I tried these and they all worked:
char *p;
printf("Size of *p is %d\n",sizeof(*p)); //result =1
printf("Size of p is %d\n",si …
2
votes
4answers
88 views
Is there a way to get the byte size of vectors through type alone?
How can I predict the size of a vector?
#include <vector>
#include <iostream>
using namespace std;
int main() {
cout << sizeof(vector<char[8]>) <&l …
6
votes
6answers
274 views
Are there are any platforms where pointers to different types have different sizes?
The C standard allows pointers to different types to have different sizes, e.g. sizeof(char*) != sizeof(int*) is permitted. It does, however, require that if a pointer is converte …
3
votes
3answers
164 views
Potential problem with C standard malloc’ing chars.
When answering a comment to another answer of mine here, I found what I think may be a hole in the C standard (c1x, I haven't checked the earlier ones and yes, I know it's incredib …
2
votes
6answers
323 views
How do you know how much space to allocate with malloc()?
I'm a total C newbie, I come from C#. I've been learning about memory management and the malloc() function. I've also came across this code:
char *a_persons_name = malloc(sizeof(c …
1
vote
7answers
245 views
newbie questions about malloc and sizeof
Can someone explain to me why my call to malloc with a string size of 6 returns a sizeof of 4 bytes? In fact, any integer argument I give malloc I get a sizeof of 4. Next, I am try …
6
votes
7answers
428 views
Is it necessary to multiply by sizeof( char ) when manipulating memory?
When using malloc and doing similar memory manipulation can I rely on sizeof( char ) being always 1?
For example I need to allocate memory for N elements of type char. Is multiply …
