Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,939 questions

51,876 answers

573 users

How to use an asterisk (*) to specify the field width in printf with C

2 Answers

0 votes
#include <stdio.h>
 
int main(void)
{
    int width = 25;
    int doubleWidth = 50;
    const char* str = "C Programming";
 
    printf("|%.25s|\n", str);
    printf("|%.*s|\n", width, str);
    printf("|%50s|\n", str);
    printf("|%*s|\n", doubleWidth, str);
 
    return 0;
}
 
 
 
 
/*
run:
 
|C Programming|
|C Programming|
|                                     C Programming|
|                                     C Programming|
 
*/

 



answered Nov 12, 2023 by avibootz
0 votes
#include <stdio.h>
  
int main(void)
{
    int width = 15;
    int doubleWidth = 30;
    int num = 253478;
     
    printf("|%.15d|\n", num);
    printf("|%.*d|\n", width, num);
    printf("|%30d|\n", num);
    printf("|%*d|\n", doubleWidth, num);
  
    return 0;
}
  
  
  
  
/*
run:
  
|000000000253478|
|000000000253478|
|                        253478|
|                        253478|
  
*/

 



answered Nov 12, 2023 by avibootz
edited Nov 12, 2023 by avibootz
...