Search:

Type: Posts; User: cooldude

Search: Search took 0.00 seconds.

  1. ya the window closes away and iam using dev c++...

    ya the window closes away and iam using dev c++ compiler.............

    thanks for your help ............
  2. its not that iam lazy to do things..............

    its not that iam lazy to do things...........
    iam new to these forums and i thought it could be sufficient to solve my problem, so i did not quote the clear and exact problem description..............
  3. i modified the code...but still iam not getting...

    i modified the code...but still iam not getting any output........the code was compiled and there are no errors.....


    #include<stdio.h>
    void pa(int [],int,int);
    main()
    {
    int...
  4. the above did not get any error, its compiled but...

    the above did not get any error, its compiled but i did not get correct output.....iam a beginner in C progamming....so i asked u guys to help me...
    if u r not interested to help me, then simply...
  5. problem with printing elements of a array using recursion program

    problem with printing elements of a array using recursion program


    #include<stdio.h>
    void pa(int [],int,int);
    int main()
    {

    int a[14]={10,20,30,40};
    pa(a,0,3);
  6. Replies
    9
    Views
    2,163

    k thanks a lot guys.........

    k thanks a lot guys.........
  7. Replies
    9
    Views
    2,163

    find out logic for the program

    required output:



    1
    2 2
    3 3 3


    can any one please tell me the logic for the required output ?????
  8. Replies
    4
    Views
    1,060

    thanks a lottt to u all.........now its...

    thanks a lottt to u all.........now its working......
  9. Replies
    4
    Views
    1,060

    problem with the program

    #include<stdio.h>
    main()
    {
    int i,j;
    for(i=0;i<5;i++)
    printf("\n");
    for(j=0;j<5;j++)
    {
    if(i>=j)
    printf("* ");
  10. Thanks dude..............

    Thanks dude..............
  11. having trouble with reverse of a number program code

    program to print a reverse of a number


    #include<stdio.h>
    main()
    {
    int m,n,a,rev=0;;
    printf("enter a no");
    scanf("%d",m);
  12. Replies
    2
    Views
    1,405

    thanks a lot

    thanks a lot
  13. Replies
    2
    Views
    1,405

    having trouble with armstrong program code

    program to print armstrongs numbers between 1 and 500.



    #include<stdio.h>
    int main()
    {
    int m,n,sum=0,a;
    for(n=1;n<=500;n++)
    {
Results 1 to 13 of 14