Search:

Type: Posts; User: debuger2004

Search: Search took 0.01 seconds.

  1. Replies
    19
    Views
    43,396

    program to concat without using strcpy and strcat and using functions instead

    /*program to concat without using strcpy and strcat functions */
    #include<stdio.h>
    #include<string.h>
    main()
    {char a[]="hello world"; /*ur 1st string goes here*/
    char b[]="how are you";...
  2. Replies
    10
    Views
    4,363

    i work on win xp professional and dev- c++...

    i work on win xp professional
    and dev- c++ compiler from bloodshed is really good to compile
    c programs as its c99 compatible.
    try downloading it
  3. i wanted to know at time of compilation how the...

    i wanted to know at time of compilation how the program behave and how the memory is utilized ,also how the compiler behaves to it.
  4. where does the compiler store the local variables?

    can anybody explain it to me?
  5. How does a C program come to know about command line arguments?

    can any body explain it to me plz.
  6. Replies
    25
    Views
    4,350

    thats perfect prelude ,you got the hang of it :)...

    thats perfect prelude ,you got the hang of it :)
    u cracked the jinx.
  7. Replies
    25
    Views
    4,350

    guys what the program does is that first see...

    guys
    what the program does is that
    first see the code
    ok
    now what it does is it takes the ascii value of the characters between the exclamations
    and prints ! that many times in a pattern...
  8. review my telephone network simulation program

    could the C pundits on the message board plz tell me how to improve my telephone network simulation program.


    #include <stdio.h>
    #include <conio.h>
    #include <stdlib.h>
    #include <dos.h>
    ...
  9. newbie :how to compile C++ prog in emacs editor

    new to linux
    wanted to know how to compile cpp prog in vi or emacs
    editor
    pls help:confused:
  10. Replies
    2
    Views
    1,407

    main () { if (printf (“HELLO WORLD”)){} ...

    main ()

    {

    if (printf (“HELLO WORLD”)){}

    }:)
  11. Replies
    25
    Views
    4,350

    take the exe

    take the exe
  12. Replies
    25
    Views
    4,350

    run the code in DEV C++ guys:)

    run the code in DEV C++
    guys:)
  13. Replies
    25
    Views
    4,350

    run the code up guys and come up with an answer...

    run the code up guys and come up with an answer
    ,but least the code works for all that you said .
    tell me how it works
    if u r the elite
    ?
  14. Thread: question ?

    by debuger2004
    Replies
    37
    Views
    3,805

    code for the first program about printing numbers w/o loops test control structures

    #include<stdio.h>
    int main()
    {int n,func1();
    printf("enter the value of n");
    scanf("%d",&n);
    func1(n);
    }
    int func1(int n)
    {static int k=1;
    int t=0;
  15. Thread: c question

    by debuger2004
    Replies
    3
    Views
    1,174

    check out for answers in C-complete reference by...

    check out for answers in C-complete reference by HELBERT SCHILDT

    a piece of advice try to do ur assignments on your own u will learn the language :)
  16. Replies
    3
    Views
    1,685

    C99 compiler

    can anybody help me find a free C99 compiler please:)
  17. Replies
    10
    Views
    29,847

    put the contents of e2c1.zip & e2c2.zip in a...

    put the contents of e2c1.zip & e2c2.zip in a folder and run the program:)
  18. Replies
    10
    Views
    29,847

    check this file it has a prog to do what u asked...

    check this file it has a prog to do what u asked for:cool:
  19. Replies
    25
    Views
    4,350

    check this code out

    #include<conio.h>
    #include<stdio.h>

    void main()
    {
    int a,b,c;
    for (b=c=10;a="Coming Soon\
    !BBKBKBKBKBBGBBK\
    !BBBCACBBBGBBBI!B!EAE!BBGBBBI\
    BBBCACBBBGBBBI!B!EAE!BBGBBBI\
  20. Thread: question ?

    by debuger2004
    Replies
    37
    Views
    3,805

    review to my previous question

    thank you for your valuable solutions.

    the loop can be removed by recursion

    and the test condition by bitwise operators used as a short circuit operator

    thanks
    again
  21. Thread: question ?

    by debuger2004
    Replies
    37
    Views
    3,805

    question ?

    this is a question for all of u to try

    write a program to print 1 to n numbers without using loops
    without using test conditions, control structures?
Results 1 to 21 of 21