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

51,877 answers

573 users

How can i check whether a string ends with .csv in C

3 Answers

0 votes
#include <stdio.h>
#include <string.h>
 
int main() {
    char s[] = "salary.cvc";

	char *dot = strrchr(s, '.');
	
	if (dot && strcmp(dot, ".cvc") == 0)        
		puts("yes");
	else
		puts("no");
		
    return 0;
}


  
/*
run:
  
yes
  
*/

 



answered Nov 15, 2019 by avibootz
0 votes
#include <stdio.h>
#include <string.h>
 
int main() {
    char s[] = "salary.cvc";
	
	char *dot = s + strlen(s) - 4;
	
	if (dot && strcmp(dot, ".cvc") == 0)        
        puts("yes");
    else
        puts("no");
		
    return 0;
}


  
/*
run:
  
yes
  
*/

 



answered Nov 15, 2019 by avibootz
0 votes
#include <stdio.h>
#include <string.h>
 
int main() {
    char s[] = "salary.cvc";
	int len = strlen(s);
	
	if (len > 4 && strcmp(s + len - 4, ".cvc") == 0)        
        puts("yes");
    else
        puts("no");
		
    return 0;
}


  
/*
run:
  
yes
  
*/

 



answered Nov 15, 2019 by avibootz
edited Nov 15, 2019 by avibootz
...