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

51,810 answers

573 users

How to remove the last N characters of a string in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>

int main(void) {
    char str[] = "C Programming";    
    
    puts(str);
    
    int N = 3;
    str[strlen(str) - N] = '\0';
    
    puts(str);
    
    return 0;
}





/*
run:

C Programming
C Programm

*/

 



answered Sep 27, 2021 by avibootz

Related questions

1 answer 114 views
1 answer 145 views
2 answers 265 views
1 answer 90 views
1 answer 120 views
1 answer 109 views
...