;)
huma satti
Posts
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite -
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite"MANHOOS ADAMI": ITS NOT MA HOME WORK OK NA ........... IF U WANA GIV ANS OV IT THN GIV. DNT TRY TO OVER SMART...:-P:mad:
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infiniteSO NICE OV U THNX ALOT OV UR HELP
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infiniteTHNX ALOT 4 UR HELP SO NICE OV U
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infiniteTHNX ALOT 4 UR HELP
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infiniteTHNX ALOT 4 YOUR HELP
-
"which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite"hi! i have a question. that is we have ha a problem "which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite" plz also give reason along with answer Best Regards, Huma Satti
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinitehi! i have a question. that is we have ha a problem "which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite" plz also give reason along with answer Best Regards, Huma Satti
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinitehi! i have a question. that is we have ha a problem "which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite" plz also give reason along with answer Best Regards, Huma Satti
-
which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinitehi! i have a question. that is we have ha a problem "which one is smaller n pow 2, 1000 pow n, n pow n, n pow 1000 , when n value is nearer to infinite" plz also give reason along with answer Best Regards, Huma Satti
-
i want to convert the byte information into bit informationhello everybody i have taken as input the wireless packets. it contains a two byte control field. i want to extract bits information from these two byte information. how can i do that. Like control field has 2 bits of type information and 4 bits of subtype information . i want to extract these pieces of information. can anybody tell me how can i do that. in what data type should i take the bits information. thanks
-
how to convert bytes array into inthello i want to read sequenece numbers from the packets that are in a dump file. problem is that i hav read the header into byte array. and want to convert the sequence numbers into integer. my code is unsigned char buff[2]; buff[0]=header[22]; buff[1]=header[23]; unsigned int t; n=(buff[0]<<24)|(buff[1]<<16); header is byte array containing header. byet 22 and 23 is sequqnce number and i want to convert it into int. but this code is not working properly. can anybody help me.