The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
43 views

adding unsigned int to int [duplicate]

#include <iostream> int main () { using namespace std; unsigned int i = 4; int a = -40; cout<<a+i<<endl; return 0; } Executing this gives me 4294967260 I know there's a ...
0
votes
1answer
49 views

Conversion from unsigned int array to unsigned char array

I don't know how to convert an array of unsigned int to an array of unsigned char in a good way. I would like to receive some suggestions. To be more clear, my problem is that I have a function that ...
0
votes
2answers
50 views

comparison of signed and unsigned numbers [duplicate]

Here is the question as shown below and the answers comes as True.I know there is some promotion which would happen when you compare an signed and unsigned.Can you please tell me how does the signed ...
2
votes
1answer
51 views

Why are x and z evaluating differently if “x=(date<<7)>>12” and {y=date<<7;z=y>>12;}?

It is really frustrating.What is the possible reason that (date<<7)>>12 is giving a different result from y>>12 where y is date<<7?.I should add that the latter is working ...
2
votes
1answer
56 views

How can to check if type is unsigned int or signed int in Java ?

How to check if type is unsigned int or signed int in Java ? I used object.getExpressionType() to know type in Java, but it is showing or giving only long, int but not unsigned int or signed int. I ...
0
votes
1answer
45 views

MIPS 3000 assembly, load and print 32-bit unsigned integer

My program has to accept an input between between 0 and 2^32 or 4,294,967,295. Which bit-wise 32 bytes should be able to do, but i'm overflowing into the negatives because i'm not sure how to make ...
0
votes
1answer
54 views

Wrong result in operation with unsigned integers

I have a problem with an arithmetic operation with unsigned integer variables. All the variables are defined as uint32_t. This is the arithmetic operation: batt += (uint32_t) ((((charg - discharg) * ...
0
votes
2answers
57 views

C : Modulus operator on unsigned int gives unexpected output

#include <stdio.h> main() { unsigned a = -20; unsigned b = 10; printf("%d\n", (a % b)); printf("%d\n", (-20 % 10)); } Output: 6 0 The second printf prints the expected value ...
0
votes
2answers
119 views

Unlimited Unsigned Integer linked-list implementation. Subtraction not working

So, I have implemented an entire Unlimited Unsigned integer class using a linked-list for a project Euler problem I am working on. I have verified that all of the logical bit operations are correct ...
-1
votes
9answers
168 views

unsigned integers in C [closed]

While i am running the program below it outputs like 109876543210-1-2-3-4-5-6-78-9-10-11-12-and s0 on. Why so? What is the concept of unsigned integer? main () { unsigned int i; for ...
1
vote
4answers
96 views

Is converting int to size-t avoiding number overflow?

I have read the following vulnerability report in grep and the associated commit in which all the integer and unsigned integer are replaced by size_t. I have a simple question: is replacing unsigned ...
0
votes
1answer
105 views

C++ templates optimization [closed]

At which point will/can the part about the template method be optimized by a compiler? Will it remove unreachable code, unwrap unecessary loops? (Bits uses unsigned int blocks, Integer uses unsigned ...
0
votes
4answers
177 views

C/C++: How to properly convert “unsigned int *” value to “unsigned int”?

I have an "unsigned int *" value, and I need to convert it to a simple "unsigned int", so I could transfer it to a function. But, unfortunately, when I try to do a simple cast, the value gets changed: ...
1
vote
0answers
117 views

Unsigned int behaves differently in Release Mode

I have a weird problem, in Debug Mode this code works fine: char* PCInformation::GetCPUName() { if (CPUName[0] == '\0') { _memset(CPUName, 0, 0x3F); // Get extended ids. ...
0
votes
1answer
137 views

Java unsigned - remove sign bit

I have this function: public static final int UNSIGN(short b){ return (b & 0xFFFF); } The intent here is to use the value in 'b' as if it were positive, by this I mean as if it were an ...
0
votes
2answers
159 views

Convert a string to an 8-bit signed integer in python

I'm trying to patch together a motor control system using python and ctypes and one of the things I need to do is take an text input and convert it to an 8-bit signed integer. Below is the ...
2
votes
1answer
127 views

C - unsigned int doesn't get the correct value on assignment

This is from gdb: 22 database->size = size; (gdb) n 23 return database; (gdb) p size $6 = 1401 (gdb) p database->size $7 = 3086862424 (gdb) p &size $8 = (unsigned int *) ...
5
votes
2answers
142 views

C# int32 literal can only be stored in long data type

Im preparing for a very tricky c# exam and this question popped up while doing so. I have the following code: uint zzz = -12u; -12u is recognized as System.Uint32 literal but it can only be stored ...
2
votes
1answer
169 views

Why using 'divl' when doing int / unsigned int division

I tested this code in X86. void func() { int a, b; unsigned int c, d; int ret; ret = a / b; // This line use idivl, expected ret = c / d; // this line use idivl, expected ret = a / c; ...
0
votes
2answers
101 views

Howcome assembly does not have an signed and unsigned subraction instruction?

I am making a virtual machine and a C compiler for it. Something I do not get though is how most instruction sets have a IMUL and IDIV but not a ISUB and an IADD. Since sub is usually unsigned sub how ...
1
vote
1answer
120 views

How to convert the char array to unsigned int?

I have the following code: volatile unsigned int * address; char * array="0x10000008"; Please tell me, what is a correct way of writing the "array" value to "address" variable?
0
votes
2answers
482 views

Initializing unsigned short int to signed value

#include<stdio.h> int main() { unsigned short a=-1; printf("%d",a); return 0; } This is giving me output 65535. why? When I increased the value of a in negative side the output is ...
-1
votes
3answers
242 views

Bit-level expression for single precision floating point negation

So I'm having a hard time implementing this idea. I basically just want to take the argument 'uf' and negate it. I am treating the argument as an unsigned integer in 32bit, this acts as a sort of ...
2
votes
3answers
205 views

the idea behind unsigned integer [duplicate]

Possible Duplicate: What happens if I assign a negative value to an unsigned variable? I'm new at C++ and I want to know how to use unsigned types. For the unsigned int type, I know that it ...
0
votes
1answer
132 views

How to cast const unsigned int array into int array

I'd like to cast a const unsigned int* array into an int* array. static_cast and const_cast, however, fail. const unsigned int* getArray() { static unsigned int a[3]; a[0] = 0; a[1] = 1; a[2] ...
0
votes
1answer
116 views

Mapping DataType from C (Unmanaged) to C# (Managed)

I need to get Data from a C DLL to a C# Application. Here is the error : Cannot marshal field 'Counters' of type 'KnittingWago.Common.WAGO_DATA_TO_USER_T': Invalid managed/unmanaged type combination ...
-1
votes
3answers
351 views

Extract data from uint8 to double

I have a C function receiving a uint8 pointer with another parameter which is its size (number of bytes). I want to extract double data from this buffer. Here is my code: Write(uint8* data, uint8 ...
-1
votes
2answers
590 views

How to compare two unsigned integers (uint8_t) in c

I have two uint8_t pointers in my program and I want to compare the values of those. I don't have good idea to deal with unsigned ints. Here is my code static void bacast_signed_message() { uint8_t ...
4
votes
3answers
261 views

+[NSNumber numberWithUnsignedInteger:] Literal?

I know I can do @3 instead of [NSNumber numberWithInt:3], but what's the literal for [NSNumber numberWithUnsignedInteger:3]?
4
votes
5answers
206 views

Assert that unsigned int a indeed positive doesn't work ?

I want to multiply two numbers , and I know that my numbers are always positive , then : unsigned int mulPositiveNumbers(unsigned int a ,unsigned int b) { assert(a > 0); assert(b > 0); ...
2
votes
2answers
223 views

Cocos2d unsigned int showing up everywhere

I'm not sure what I did - I was coding away merrily.. I think it might have something to do with updating Xcode to 4.1.1, but all of a sudden, when I build and run my project, the following compiler ...
3
votes
7answers
152 views

Can't understand unsigned int type in C

I'm starting to program in C and I'm having a problem to understand some results I'm getting. I'll paste the code here: #include <stdio.h> unsigned int main(void) { unsigned int x = 0; ...
6
votes
1answer
980 views

Unsigned 32 bit integers in Javascript

How can I emulate 32bit unsiged integers without any external dependencies in Javascript? Tricks with x >>> 0 or x | 0 don't work (for multiplication, they seem to work for addition / ...
6
votes
1answer
102 views

Why do C implicit conversions operate like they do?

When an integer number is out of the type's range, the max value + 1 is added / subtracted (depends on which part of the range the number was). For example, unsigned short num = 65537; num will ...
2
votes
4answers
1k views

Casting enum definition to unsigned int

According to this SO post: What is the size of an enum in C? enum types have signed int type. I would like to convert an enum definition from signed int to unsigned int. For example, on my ...
2
votes
5answers
173 views

Fastest way to zero

What is the fastest way to zero out an unsigned int? I am currently just setting the value to 0, but I don't know if there are any tricks for zeroing out a variable? I need a few clock cycles back in ...
0
votes
2answers
599 views

How can I print unsigned integer in decimal number in MIPS?

For example, I want to print this number A0090000(16) in unsigned decimal number in MIPS. So the print result should be 2684944384(10). But I got stuck because I only know the assembly code to print ...
2
votes
1answer
703 views

accessing element (x,y) in cv::Mat with c++ api

i'm aware of a lot of post about this argument and i've read a lot of them but i'm still confused. the problem are the types ( ohu, damn, this is c, i have to deal with with data types! ;-) ). i'm ...
4
votes
6answers
7k views

C - unsigned int to unsigned char array conversion

I have an unsigned int number (2 byte) and I want to convert it to unsigned char type. From my search, I find that most people recommend to do the following: unsigned int x; ... unsigned char ch = ...
1
vote
0answers
240 views

Decoding the scanned barcode value to int value

When I scan the barcode and I get some value if it is Equal=2 then I need to display with == and if it is Equal=3 then I need to display with = and if the value is 4 then invalid. But Scanned Barcode ...
2
votes
3answers
220 views

Weird result after assigning 2^31 to a signed and unsigned 32-bit integer variable

As the question title reads, assigning 2^31 to a signed and unsigned 32-bit integer variable gives an unexpected result. Here is the short program (in C++), which I made to see what's going on: ...
2
votes
3answers
2k views

Converting 32-bit unsigned integer (big endian) to long and back

I have a byte[4] which contains a 32-bit unsigned integer (in big endian order) and I need to convert it to long (as int can't hold an unsigned number). Also, how do I do it vice-versa (i.e. from ...
0
votes
4answers
226 views

How can I pass both `int` and `unsigned int` members, by reference or pointer, to the same function?

I have a 20-30 line C++ function which was taking a reference to an int for possible updation. Now I am replacing the member which was passed to it with a member of a member encapsulating more data, ...
7
votes
3answers
1k views

Overflowing of Unsigned Int

What will the unsigned int contain when I overflow it? To be specific, I want to do a multiplication with two unsigned ints and want to know what will be in the unsigned int after the multiplication ...
5
votes
4answers
1k views

Unsigned integers in C++ for loops

I have made some research on Stackoverflow about reverse for loops in C++ that use an unsigned integer instead of a signed one. But I still do NOT understand why there is a problem (see Unsigned int ...
0
votes
4answers
812 views

Convert hex scanned (scanf) from an unsigned int array into decimal

I'm here trying to convert 4-digit hexa into dec but didn't succeed. Here is a my code. unsigned int array[4]; printf("Type in 4-digit hexa: \n"); scanf("%x", &array); ...
2
votes
3answers
565 views

java: fastest way of converting a bye array byte [1000] to array int[500]

The goal is to convert every pair of bytes as a single unsigned 16bit int. In C I would define an array[500] of 16bit unsinged int pointer and would point it the the array of bytes, but in java I am ...
2
votes
4answers
931 views

C++: Difference of two unsigned 64-bit integer in a signed 64-bit integer

I am trying to write a function in C++ which takes two 64 bit unsigned integers and returns their difference in a signed 64 bit integer. It seems to be a bit complicated because of the overflow ...
0
votes
7answers
1k views

INT max size for 32bit system

Lets assume we are talking about 32bit system. PHP doesn't support unsigned INT. It means that INT value should be between -2,147,483,648 and 2,147,483,647 values. And INT takes 4 bytes to store a ...
1
vote
3answers
421 views

'unsigned long int', and 'unsigned long long int' assignment issue

A few weeks ago, I was using for first time (I'm not used to use them) floats, doubles, and I have some problems with the comparison operand. I also have had problems while trying to assign values to ...

1 2