Right Justify in C

#include <stdio.h>

int main( )
{
 int a = 324324;
 
 printf("%10d",a); 
}