Is there a way to declare array elements without typing each and every single one?? I'm creating an array of characters for the alphabet to be used for comparing and typed each and every single character is there a way to declare the elements like for example int array[50] = {from 1 to 50};
//from
char alphabet[30] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};
//to this
char alphabet[30] = {'a' to 'z'};
//or is it possible for integers or float?