How to use strchr() function to return a pointer to the first occurrence of a character in string in C

2 Answers

0 votes
#include <stdio.h>
#include <string.h>
  
int main(void)
{
    char s[] = "Unreal Engine 4";
    char *p;
     
    p = strchr(s, 'a');
    printf("found 'a' from: %s\n", p);
      
    return 0;
}
  
   
/*
     
run:
     
found 'a' from: al Engine 4
 
*/

 



answered Jan 28, 2016 by avibootz
edited Jan 28, 2016 by avibootz
0 votes
#include <stdio.h>
#include <string.h>
 
int main(void)
{
    char s[] = "Unreal Engine 4";
	char *p;
	
	p = strchr(s, 'a');
	printf("found 'a' in index: %d\n", (int)(p - s));
     
    return 0;
}
 
  
/*
    
run:
    
found 'a' in index: 4

*/

 



answered Jan 28, 2016 by avibootz
edited Jan 28, 2016 by avibootz
...