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,894 questions

51,825 answers

573 users

How to print characters and strings in different formats in C

1 Answer

0 votes
#include <stdio.h>

int main(void) {
    char ch = 'A';
    
    printf("%c\n%4c\n%6c\n", ch, ch, ch);
    printf("%4c\n%c\n\n\n", ch, ch);
    
    static char s[] = "C Programming";
    
    printf("%s\n", s);
    printf("%20s\n", s);
    printf("%20.4s\n", s);
    printf("%.6s\n", s);
    printf("%-20.4s\n", s);
    printf("%3s\n", s);
   
    return 0;
}





/*
run:

A
   A
     A
   A
A


C Programming
       C Programming
                C Pr
C Prog
C Pr                
C Programming

*/

 



answered Oct 6, 2021 by avibootz
...