Search:

Type: Posts; User: Hansie

Search: Search took 0.01 seconds.

  1. This is what I am trying to do:...

    This is what I am trying to do: http://www.kvi.nl/~nijboer/wavutils/wavutils.htm

    (except in my case, I ignore the .wav header chunks as those are already stripped out of my RAWfiles)
  2. The RAW data is actually .wav files where the...

    The RAW data is actually .wav files where the headers etc. have been stripped out. all thats left in the raw data is the actual audio. 16-bit PCM .wav files. did you spot an obvious dumb mistake?
  3. Converting RAW data to ASCII Signed Integers 16-bit

    This is not a school assignment.

    I have some RAW files that I need to convert into ASCII data. 16-bit signed integers. Here is the result I am looking for



    const TESTDATA[] ATTRIBUTE_ALIGN(...
  4. Replies
    6
    Views
    1,661

    I am not entirely sure that is true; hence my...

    I am not entirely sure that is true; hence my original question. I read somewhere (wish I could remember where) that there are differences between say C# Visual Express and C# in Visual Studio 2005...
  5. Replies
    6
    Views
    1,661

    Multiple C Compilers installed

    I currently have:

    - Visual Studio 2003 Professional installed + Service Pack
    - Visual Studio 2005 Professional installed + Service Pack

    a project I am working on requires the FREE Visual...
  6. Replies
    12
    Views
    5,211

    Yes, that would make sense!

    Yes, that would make sense!
  7. Replies
    12
    Views
    5,211

    good spot!!! and I even had VS2005 Pro on highest...

    good spot!!! and I even had VS2005 Pro on highest compiler warning (Level 4) -- and got 0 warnings!
  8. Replies
    12
    Views
    5,211

    Thanks! you are right, counter should not have...

    Thanks!

    you are right, counter should not have global scope; you ask:


    I did this simply because the assignment at the top asked me to do both; a pointer and an array indirection respectively.
  9. Replies
    12
    Views
    5,211

    Is this poor coding? copying arrays of doubles

    In my effort to learn C on my own, I am using Stephen Prata's book; it has some great assignments.

    This is the assignment:

    Write a program that initializes an array-of-double and then copies...
  10. Replies
    12
    Views
    3,086

    You are correct; but in my learning process to...

    You are correct; but in my learning process to learn C I use VS2005 Pro. I have the KEIL compiler for the "real" work once I learn the ropes around C
  11. Replies
    12
    Views
    3,086

    I agree that this is how the compiler vendors...

    I agree that this is how the compiler vendors might feel; but for embedded controllers -- which I am writing (learning to develop) software for -- C++ is not an option. memory limitations, speed...
  12. Replies
    12
    Views
    3,086

    compiler providers -- including Microsoft -- dont...

    compiler providers -- including Microsoft -- dont seem to be willing to put in the effort to support C99 because (a) too few people need the C99 features and (b) too few use ANSI C compared to C++
    ...
  13. Dont forget to install the Service Pack #1 for...

    Dont forget to install the Service Pack #1 for VS2005 -- specifically for Vista
  14. Replies
    12
    Views
    3,086

    Yes, that is a nice link; I used to use the...

    Yes, that is a nice link; I used to use the Bloodshed environment in the past -- then, being naive, I invested in the VS2005 Pro in the belief that it would someday be C99 compatible. Apparently,...
  15. Replies
    12
    Views
    3,086

    Well ... thats the thing; I want C99 support and...

    Well ... thats the thing; I want C99 support and knew that VS2005 Pro was not "up-to-date" but did not know a commercial decision had been made not to support it, at all!
  16. Replies
    12
    Views
    3,086

    VS2005 Professional & designated initializers

    I use Visual Studio 2005 Professional in my leaning of the C language. I find it very unsettling that VS2005 Pro is not C99 compatible. A good example, why can I not use designated array...
  17. Replies
    4
    Views
    2,330

    This version actually works, but how can I...

    This version actually works, but how can I improve it?


    int fibonacci(int userinput)
    {

    if (userinput < 2)
    return userinput;

    else
  18. Replies
    4
    Views
    2,330

    My Ansi C Fibonacci code stinks! obvious bug?

    I know I have an obvious bug -- well, a calculation error somewhere. Doing a quick fibonacci code sample, only requirements is NOT to use arrays and NOT to do it recursively.

    This is what I came...
  19. Replies
    8
    Views
    1,587

    Excellent feedback -- and so fast! I am...

    Excellent feedback -- and so fast! I am impressed; Also highly impressed about the depth of knowledge and help! :)
  20. Replies
    8
    Views
    1,587

    would you mind showing me in code? OOPS --...

    would you mind showing me in code?

    OOPS -- noticed I posted this in C++ and not the C section. sorry
  21. Replies
    8
    Views
    1,587

    Recursive Programming -- Power of function

    I am using Stephen Prata's C Primer Plus (5th Edition) to teach myself C Programming. I am not a student (I wish), and am seeing myself stuck!

    (bear with me, this is my first post so I hope I get...
Results 1 to 21 of 21