Search:

Type: Posts; User: Karam

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    1,305

    Help in playing sound file from C

    I want to play sound file(.wav,.avi,etc.) from C program. If anybody know something about this, please let me know. Thanx in advance.
  2. Replies
    2
    Views
    5,497

    Absolutely correct. parameters are used while...

    Absolutely correct.

    parameters are used while defining or declaring a function e.g. int a,int b in the declaration
    void dummy(int a,int b);

    arguments are the actual values passed to the...
  3. Replies
    3
    Views
    2,076

    To find max float no.

    How can one find a maximum float number that can be stored on a particular machine without using built-in preprocessor directives of header files i.e. without using FLT_MAX,etc. from float.h?
  4. Replies
    14
    Views
    3,258

    In windows, there are two ways of doing so. 1....

    In windows, there are two ways of doing so.
    1. use bioscom built-in function in <bios.h> provided by all standard compilers
    2. there are 10 registers available for the purpose. u will have to...
  5. Thread: Parity check

    by Karam
    Replies
    22
    Views
    14,742

    how is it possible? everyone knows that 1...

    how is it possible? everyone knows that

    1 byte=8 bits
  6. Thread: Parity check

    by Karam
    Replies
    22
    Views
    14,742

    int findparity(unsigned int test){ int...

    int findparity(unsigned int test){
    int count=0;
    int size;

    size = sizeof(test);
    size *= 8;
    size--;

    for(;size>=0;size--){
    if((test>>size) & 0x01)
Results 1 to 6 of 6