2021 PROGRAMMING LANGUAGES : You should learn this languages that will help to sustain and compatible in the year 2021. It help to boost your programming skills and fight with current technology. You will be able to think critically and with advance knowledge you can crack any coding interviews. Top 10: 10. KOTLIN Kotlin can be used for any kind of development, be it server-side, client-side web and Android. With Kotlin /Native currently in the works, support for other platforms such as embedded systems, mac-OS and iOS. 9. SWIFT Swift is a general-purpose programming language built using a modern approach to safety, performance, and software design patterns. The goal of the Swift project is to create the best available language for uses ranging from systems programming, to mobile and desktop apps, scaling up to cloud services. 8. SCALA : Scala combines object-oriented and functional progra...
Sir if i enter
ReplyDeleteRam Chandra Das
Ok sir. Thank you.
DeleteIt will still show 'R.Das' in output because only the first letter of the first name and the last name is taken to make the attribute, middle name is ignored.
DeleteCan you do it
DeleteRam Chandra Das will print as R.C.Das
#include
Deletevoid main()
{
char fname[20], mname[20], lname[20];
printf("Enter full name (first middle last): ");
scanf("%s %s %s", fname, mname, lname);
printf("Abbreviated name: ");
printf("%c. %c. %s\n", fname[0], mname[0], lname);
return 0;
}