• Member Avatar for VatooVatoo
    VatooVatoo

    Replied To a Post in Remove whitespace from file

    You can use something like this: while ((c = getc(fp)) != EOF) if(c == 32) ....
  • Member Avatar for VatooVatoo
    VatooVatoo

    Began Watching Remove whitespace from file

    I have pasted my cpp code below, my goal is removing the whitespace from my .txt file. Is someone able to provide suggestions and help me figure this out? #include …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Began Watching How to create a REST Service?

    I want to create a web service,the theme this service is it has two take parameters as two audio files and generate a text file as output file. How would …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Replied To a Post in How to create a REST Service?

    If I understand your question, you want to send your local file names to server and then server read them and calculate the response. When you send your request to …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Began Watching Interrogating the Device Manager

    I am looking to find a way of reading a value in from the device manager - to see if a Bluetooth devce (always the same one) has the value …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Replied To a Post in Interrogating the Device Manager

    You could use http://32feet.codeplex.com/ library.
  • Member Avatar for VatooVatoo
    VatooVatoo

    Began Watching c++

    a) Write a loop to print all numbers from 1 to 100, one per line, Write a blank line after every five lines. [10]
  • Member Avatar for VatooVatoo
    VatooVatoo

    Replied To a Post in c++

    We don't provide code. If you have any problems post your code and people will help you. But for now and your start point and for the last time: for(int …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Began Watching memory leak after free the memory for char string

    Hi All, in below code snippet, I have been facing memory leak issue while free memory for string.Could you let me know thereason for the same.I believe if we are …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Replied To a Post in memory leak after free the memory for char string

    Maybe you could use somthing like this: #include<stdio.h> #include<stdlib.h> #include<string.h> #define RESULT_FAILURE -1 #define RESULT_SUCCESS 0 int16_t fun(char *iaddr) { char* p = NULL; int i = 0; int len …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Began Watching Using for loop

    Hi, I got some data from this table. Can it be use using (for loop) ? http://i.imgur.com/lq7WtWA.png Recently, I used (if else) function, but it seem too longer. I am …
  • Member Avatar for VatooVatoo
    VatooVatoo

    Replied To a Post in Using for loop

    You dont need last if else. instead just use else ... ... else //4095++ { volt = 10 ; } You also need to define result variable as a unsigned.

The End.