I want to use bitwise operator--complement on an integer array. Here is my code:
#include <stdio.h>
int number[100];
unsigned char temp[100],complement[100];
main()
{
number[1]=23;
/*t...
http://www.experts-exchange.com/Programming/Languages/C/Q_10313635.html
Zones:
CDate Answered: 03/26/2000 Grade: A Views: 0
G'Day All.
How do i do bitwise shifting in ASP?
Please don't say use javascript, becuase i do not want to.
Examples.
iNumber = 1 << 0 [ie. 1]
iNumber = 1 << 1 [ie. 2]
iNumber = 1 << 2...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20086929.htm...
Zones:
ASPDate Answered: 03/04/2001 Grade: A Views: 0
In Access97 and Access2000, the "AND" operator will work logically but not bitwise on numeric types if used in the data source property of the field on a report or in an eval() function either in a...
http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_20296802.html
Zones:
MS AccessDate Answered: 05/07/2002 Grade: A Views: 0
I know that you can do a bitwise shift in C using >> or << \. Is there a way to do it in VB?
Thanks
http://www.experts-exchange.com/Programming/Misc/Q_20510621.html
Zones:
ProgrammingDate Answered: 02/16/2003 Grade: A Views: 0
I need to do a bitwise AND in Visual Basic. The equivilent to what I need is the '&' symbol in C++ and Javascript.
For example, 15 in bitwise is 1111, and 9 in bitwise is 1001. If I bitwise th...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20685333.html
Zones:
Visual BasicDate Answered: 07/21/2003 Grade: A Views: 0
problem statement :
The problem is regarding the storage of time.My application has to convert the time
in milliseconds format (that is given to me in 6 bytes) t...
http://www.experts-exchange.com/Programming/Misc/Q_20727237.html
Zones:
ProgrammingDate Answered: 04/21/2004 Grade: A Views: 0
Hi Guys,
This question actually concerns VBscript under ASP, but I would classify it more as a programming question in general.
I like to define the rights of my users as a binary string. For exa...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20939678.html
Zones:
Visual BasicDate Answered: 04/02/2004 Grade: B Views: 0
How to do bitwise operation in Access?
No problems with MSSQL:
http://databasejournal.com/features/mssql/article.php/3359321
but using "&" or "AND" operators with Access dont seem to do the ...
http://www.experts-exchange.com/Microsoft/Development/MS_Access/Q_21047255.html
Zones:
MS AccessDate Answered: 09/28/2004 Grade: B Views: 0
Hi experts, here is my question for the day:
for simplicity's sake lets say i have an enumeration like this
Twenties = 1
Thirties = 2
Forties = 4
Fifties = 8
and if i wanted something t...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21574663.htm...
Hi, I need to do the following using the bitwise exclusive OR
1.098987 ^ (1/3).
My problem is that 1.098987 needs to be an int. My field is a decimal(18,6). Does anyone know a way around this...
http://www.experts-exchange.com/Microsoft/Development/MS-SQL-Server/Q_21576243.html