Write a function expand(s1,s2) that expands shorthand
notations like a-z in the string s1 into the equivalent
complete list abc...xyz in s2 . Allow for letters of either
case and digits, and be prepared to handle cases like a-b-c
and a-z0-9 and -a-z.
z-a:zyx......ba
-1-6-:-123456-
1-9-1:123456789987654321
a-R-L:a-R...L
a-b-c:abbc
No Answer is Posted For this Question
Be the First to Post Answer
What is a shell structure examples?
How to removing white spces in c programming only bu using loops
what will be the out put. #include<stdio.h> void main() { printf("Output:"); printf(1+"vikashpatel"); }//output: ikashpatel
what is the function of .h in #include<stdio.h> in c ?
23 Answers HCL, IBM, Wipro,
pick out the odd one out of the following a.malloc() b.calloc() c.free() d.realloc()
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
what is the self-referential structure?
which one low Priority in c? a)=,b)++,c)==,d)+
What is main return c?
What is register variable in c language?
How to explain the final year project as a fresher please answer with sample project
why programs in c are running with out #include<stdio.h>? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }