Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
Write a C program to input your full forename and full surname. e.g James McCarren and display in one string your complete initial and surname i.e J McCarren . Your initial should always be in upper case.
We could use pointers or char arrays let us do both Answer: pointers #include #include /* malloc's prototype is in stdlib.h */ #include /* toupper's prototype is in ctype.h */ #include void main() { char prompt; Date: 26th August 2012 Version 1.0 Function : Example to show string manipulation Modifications: none*/ char *text,*forename,*surname; /* We must allocate space for the strings say 80 chars so we use 81 because the terminator takes 1 space*/ text = (char *)malloc(81); forename = (char *)malloc(81); surname = (char *)malloc(81); if ((text == NULL)|| (forename == NULL) || (surname== NULL)) { printf("Memory full Error type -1 \n\r"); exit(1); } printf("Please enter in your fore and surname name\n\r"); /* Note no address operator required because text is an address Scanf will read up to a white space and assign that to forename the rest will be assigned to surname*/ scanf("%s%s",forename,surname); /* We can extract the initial of the forename and store in in temp*/ *text = toupper(*forename); *(text+1) = ' '; *(text+2) = '\0'; /*We can now add together the two strings */ strcat(text,surname); printf("Hello %s\n\r",text); printf("Press and key to exit \n\r"); scanf("\n%c",&prompt); }
Execution of for loop
Overloading Binary Operators Using Friend Function class SI {float i,p,n,r,a; public: SI(){}; SI(int gp,int gn, int gr); void putdata(void); friend SI operato
Rahul is a newbie to the programming and while learning the programming language he came to know the following rules: · Each program must start with ''{'' and end with '
Static Variables Static variables have the similar scope s automatic variables, but, unlike automatic variables, static variables retain their values over number of function ca
c program of double linked list with full explanation
You are working for a computer gaming company and have been asked to look at a survival game. You will be simulating a rabbit stranded on an island, collecting a large number of s
Write a C++ program with header and source files to store street addresses using the Doubly Linked List ADT. Modify the Node class from Lab Assignment 3 so that it becomes a node i
In the Byteland country a string "s" is said to super ascii string if and only if count of each charecter in the string is equal to its ascci value in the byteland country ascii co
Explain about the Character Constants in c language? The character constant is a single alphabet and a single digit or a single special symbol enclosed within a pair of single
How can one make it so keys pressed through users are not echoed on the screen? A: It is not a standard C++ feature. C++ doesn't even need your system to have a keyboard or a sc
Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!
whatsapp: +1-415-670-9521
Phone: +1-415-670-9521
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd