Posts

Showing posts from August, 2023

Software Application 3-Tier Architecture

3-Tier Architecture Three-tier  is a well-established software application architecture that organises applications into three logical and physical computing tiers.  the presentation tier (user interface) the application tier (where data is processed) the data tier (where the data associated with the application is stored and managed) Benefits  of  Three-tier Architecture : Each tier of a  three-tier architecture runs on its own infrastructure, each tier can be developed simultaneously by a separate development team.   Each tier can be updated or scaled as needed without impacting the other tiers. Each tier can run on a separate operating system and server platform - e.g., web server, application server, database server - that best fits its functional requirements.   Each tier runs on at least one dedicated server hardware or virtual server, so the services of each tier can be customised and optimised without impact the other tiers.   ...

Basic Input/Output C Program

Basic Input/Output C Program Example 1. #include < stdio.h > // header file for standard input & output functions // main function of the program which execute first in every program - starting point int main () { printf ( " Hello World \n " ); // an integer variable declaration int x ;           // Read a value from standard input scanf ( " %d " , & x ); // Write value to the standard output printf ( " %d \n " , x ); // return 0 tells that program executed successfully return 0 ; } Example 2.   #include < stdio.h > int main () { int x = 5 ; printf ( " X data is= %d \n " , x ); int y = 7 ; printf ( " Y data is= %d \n " , y ); y = 50 ; printf ( " Y data is= %d \n " , y ); printf ( " Address of X is= %u \n " , & x ); return 0 ; } Note :- A variable with '&' in prefix represents the address of that variable. e...