Search:

Type: Posts; User: Siddu_Kyocera

Search: Search took 0.01 seconds.

  1. Setting command mode build in Visual studio

    Hi All,
    I wanted build my project through command-line building because i want to use JAM build system.
    they are asking to set envornment variable vcvars32.bat in my project
    where is that...
  2. Replies
    6
    Views
    1,430

    Want to know the how to intigrate CUNIT to my project

    Hi ALl,
    Even i wanted to use CUnit for my unit testing.
    I am not able to understand the user guide provided by CUNIT people.
    can anybody help steps how to intigrate the my project to CUNIT...
  3. Replies
    1
    Views
    1,549

    C and C++ unit testing framework

    Hi All,
    I wanted to use Visual Assert unit testing framework for my project.
    anybody used this before? i want to know the efficiency of the library.
    Thanks a lot for your valuable suggestion.
    ...
  4. Replies
    7
    Views
    7,277

    Hi Laser, Thanks for your responce. I gone...

    Hi Laser,
    Thanks for your responce.
    I gone through the user guide but they were not explained how to intigrate the library to my
    project. I am using Microsoft visual studio.
    if you know how to...
  5. Replies
    7
    Views
    7,277

    Any body know how to use CUnit? Regards, Siddu

    Any body know how to use CUnit?

    Regards,
    Siddu
  6. Replies
    7
    Views
    7,277

    How about CuTest? In en.wikipedia.org they...

    How about CuTest?
    In en.wikipedia.org they wrote about Cutest that it is Simple, straightforward, fast. Single .c file. Used in the Apache Portable Runtime Library.

    I have to test lot of...
  7. Replies
    7
    Views
    7,277

    can you suggest me some good tools. i am using...

    can you suggest me some good tools.
    i am using MSVS.
    I have very limited time for my developement of project.
    hence want to know some easy tool.

    Regards,
    SIddu
  8. Replies
    3
    Views
    3,179

    Want to know the usage of cppunit library

    Hi Laser,
    I want to use CPPUNIT for C programming unit testing? where i will get complete information about its usage? i am completely new to this kind of stuff.

    Thanks in advance for your...
  9. Replies
    7
    Views
    7,277

    using cppunit for C programming

    Dear All,
    Can i use CPPUNIT library for my C programming code unit testing?
    Please suggest me steps if some body used already?

    Regards,
    Siddu
  10. Replies
    2
    Views
    1,039

    Need help in Compiler Settings

    Dear All,
    I am using Microsoft Visul studio (VC++) compiler, i am trying to run one project but i got following error.



    c:\program files\microsoft visual studio\myprojects\cutest\cutest.h(1)...
  11. Replies
    1
    Views
    1,037

    Want to know the details

    Dear All,
    I am implementing simple programming for calculator with graphics.
    i want to know the what are the equavalent header files #include"graphics.h" and #include"dos.h" in Windows operating...
  12. Replies
    1
    Views
    1,292

    Setting password for file?

    Hello All,
    I want set password for my file using C programming.
    Before opening file i should get pop up saying 'enter the password'

    Any suggestions would be great help.

    Regards,
    Siddu
  13. Replies
    6
    Views
    1,320

    How about following code? static char...

    How about following code?


    static char myString [5];


    Regards,
    Siddu
  14. Thread: Strings

    by Siddu_Kyocera
    Replies
    7
    Views
    1,411

    Hi,

    Which compiler you are using?
    It compiles fine in 'Visual Studio'
    with no errors

    Regards,
    Siddu
  15. Replies
    2
    Views
    786

    You can print as follows

    int main(void)
    {
    int a[3][3]={1,2,3,4,5,6,7,7,8};
    int i,j;
    for(i=0;i<3;i++)
    {
    for(j=0;j<3;j++)
    {
    printf("%d\t", a[i][j]);
    }
  16. Thread: Floats

    by Siddu_Kyocera
    Replies
    7
    Views
    1,334

    HI

    You can use string declaration
    char *ptr="dd/mm/yy"
  17. Replies
    3
    Views
    1,606

    Follow Below code

    Hello,


    int main ( void )
    {
    int c;
    FILE * fp;
    fp = fopen ( "MyFile.txt", "r+" );
    if(fp==NULL)
    {
Results 1 to 17 of 17