Search:

Type: Posts; User: beginningC

Search: Search took 0.00 seconds.

  1. Replies
    6
    Views
    1,652

    Thanlk u all.....

    Thanlk u all.....
  2. Replies
    6
    Views
    1,652

    Actually I was trying to find out what does it...

    Actually I was trying to find out what does it return when I dont specify what to return.
    I expected garbage but it gave the correct answer(in gcc, ubuntu. I am not much concerned about the...
  3. Replies
    6
    Views
    1,652

    Need help with the following code....

    #include<stdio.h>
    int calsum(int x,int y,int z);
    void main()
    {
    int a,b,c,sum;
    printf("\nENter any three numbers\n");
    scanf("%d\n%d\n%d",&a,&b,&c) ;
    sum=calsum(a,b,c);
    ...
Results 1 to 3 of 3