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); }
A: In C++, the definition of NULL is 0, thus there is only an aesthetic difference. I prefer to ignore macros, so I employ 0. Another difficulty with NULL is that people sometimes
Need help finishing my homework. It''s been 5 years since I''ve use C++. I am a VN.Net programmer. -Todd
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
GetChar - get a character from the keyboard, echo to the display and return it in reg al. - Note: if a linefeed (LF) is received (Enter key), a carriage return (CR) will als
#queComputers are frequently used in check-writing systems, such as payroll and accounts payable applications. Many stories circulate regarding weekly pay- checks being printed (by
Program of function overloading: class vector{ private : int v[3]; public: /*friend istream &
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
need a copy constructor program
Define a function in c program: int f1() { static int x=10; return x; } int f2() { int y=5; return y; } extern int z; void f() {
Explain the Bit Wise Operators? C language has distinction of supporting special operators recognized as bit wise operators for manipulation of data at bit level. These operato
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