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); }
smugglers are becoming very smart day by day. Now they have developed a new technique of sending their messages from one smuggler to another. In their new technology, they are send
You are required to write a stand-alone DSP application in the C programming language. The overall objective of this application is to convert a signal from the time domain to t
Write a function that computes f(x) for a quadratic polynomial in x, such as the one in assignment 3. Use the function to plot f(x) from -10 to +10.
an algorithm and flowchart of finding the product of any two numbers
Define a class polynomial with three private data members a, b and c of type double to represent the coefficient of two degree polynomial(ax^2+bx+c). Include a constructor in a pol
A parking garage charges a $2.00 minimum fee to park for up to three hours and an additional $0.50 per hour for each hour or part thereof over three hours. The maximum charge for a
Objects as Function Arguments: In C program there are several methods to define arguments, and in some case even a structure can be approved as an argument. Similarly in C+
Program for Hangman Problem #include #include #include #include #include static void playGame(); static void printMistakes(int n); st
Write a program that writes your name on the monitor ten times. Write this program three times, once with each looping method.
At a shop of marbles, packs of marbles are prepared. Packets are named A, B, C, D, E …….. All packets are kept in a VERTICAL SHELF in random order. Any numbers of packets with thes
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: +91-977-207-8620
Phone: +91-977-207-8620
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd