I have a problem as stated in the title. Here more details.
My Problem is:
a) develop a C-function which gets a char array as input parameteter and which determines the largest substring in this char array without 'e'
'E'
. Print the length of that substring.
b) write main function to test a) function. use scanf("%[^\n]",...)
or a loop with getchar()
EX: input : "you are one." .output : "you ar" length: 6