Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
Answer / rprabhakaranmca
INPUT: C212tr1is@y!is
OUTPUT:citrisus5@!
| Is This Answer Correct ? | 0 Yes | 3 No |
What is an example of enumeration?
What is meant by recursion?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is the difference between text files and binary files?
What is a newline escape sequence?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
What is meant by gets in c?
Should a function contain a return statement if it does not return a value?
What is meant by global static? why we have to use static variable instead of Global variable
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
what is the structure pointer?