I have installed the gcc compiler from this sudo apt-get install build-essential command

and my program code is

 #include<stdio.h>

 main()
   {
      int *b;

      b = (int*)malloc(10*sizeof(int));  

      printf("b=%u\n\n",b);
      printf("b+1=%u\n\n",(b+1));
      printf("b+2=%u\n\n",(b+2));

      b[2]=4;
      printf("*(b+2)=%d\n\n",*(b+2));

  }

when i try to compile this program from cc -c program.c command then i get some error

enter image description here

link|improve this question
1  
You should not cast the return value of malloc. That's just a good way to hide errors. – Cody Gray Jan 15 at 18:28
2  
#include <stdlib.h> – talonmies Jan 15 at 18:29
Your college video tutorial was made for an older version of gcc and should be updated :) Hmm wait a moment? Video tutorials for programming? What happened to reading and comprehending text? You're going to need it anyway to program well... – Torp Jan 15 at 18:29
1  
@CodyGray Casting the return value of malloc is a way to be compatible with C++. But it surely isn't necessary here. – pmr Jan 15 at 18:32
4  
Why the h*** are you logged in as root user to compile your code? – knittl Jan 15 at 18:50
show 6 more comments
feedback

3 Answers

up vote 5 down vote accepted

You're missing #include <stdlib.h> (for malloc), and the format strings are wrong. Use %p to print pointers.

Also, you don't need to (and probably shouldn't) cast the return value of malloc (in C).

And the correct signature for main without parameters is:

int main(void)

Corrected code:

#include <stdio.h>
#include <stdlib.h>

int main()
{
    int *b;

    b = (int*)malloc(10*sizeof(int));

    printf("b=%p\n\n",  (void*) b);
    printf("b+1=%p\n\n",(void*) (b+1));
    printf("b+2=%p\n\n",(void*) (b+2));

    b[2]=4;
    printf("*(b+2)=%d\n\n",*(b+2));

    return 0;
}
link|improve this answer
sir still getting the same error ..... – user1136975 Jan 15 at 18:31
1  
I don't really believe that, sorry. I did the changes I described above to your code and it compiles without any warning. – Mat Jan 15 at 18:34
Also you should cast the pointer to be printed to void* (in the unusual case void* and int* representations differ). – pmg Jan 15 at 18:37
but in ubuntu 11.04 it shows warning ... – user1136975 Jan 15 at 18:41
@pmg: I wonder how much code out there breaks horribly on such an implementation... – Mat Jan 15 at 18:44
show 1 more comment
feedback

Based on that screenshot. Those are warnings (which are still bad), but they aren't errors which would stop a compilation. So it looks like it is successfully compiling.

But in any case, if you want to print pointers, you should use %p:

printf("b=%p\n\n",b);
           ^ use %p

That will fix those warnings. As it is right now, you have mismatching format-specifiers and types. That's undefined behavior.

link|improve this answer
1  
"Those are just warnings" - well, yes, but all of them are really bad. The format string warnings could lead to UB (if sizeof(int)!=sizeof(int*)), the malloc warning needs to be fixed too. – Mat Jan 15 at 18:32
@Mat I meant that a warning won't stop a compilation. But yes, I'll clarity my wording. – Mysticial Jan 15 at 18:32
its working sir thanks but i thing i would like to ask how this same program is running successfully in video tutorial ? – user1136975 Jan 15 at 18:34
Also you should cast the pointer to be printed to void* (in the unusual case void* and int* representations differ). – pmg Jan 15 at 18:37
@mayank Can you expand on how it's otherwise "failing"? If you're referring to the warnings, perhaps it's because different compilers have different levels of warnings. (though the ones you are getting are fairly serious and any decent compiler should issue that printf() type-mismatch warning) – Mysticial Jan 15 at 18:38
feedback

I don't know why it worked in the video, it's probably using some strange non-standard compiler.

But your errors are because you are using int instead of unsigned int and you pass pointers to printf when it expects unsigned int.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown