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 |
Taking an example,differentiate b/w loader and linker ?
write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words
5 Answers Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
Explain the use of fflush() function?
Explain zero based addressing.
Sir i need notes for structure,functions,pointers in c language can you help me please
WAP to accept rollno,course name & marks of a student & display grade if total marks is above 200?
i got 75% in all semester am i eligible for your company
code for concatination of 2 strings with out using library functions?
Who developed c language?
What is the difference between exit() and _exit()?
main() { clrscr(); } clrscr();