Table of Contents1 Array Data Structure in C1.1 Frequently asked Array Questions1.2 What is Array ?1.3 Example of an Array Data Structure1.4 Applications of Array Data Structure1.5 Properties of an Array in C1.6 Memory as an Array in C1.7 Types of Array in Data Structure1.7.1 Order of an Array1.7.2 1.7.3 One Dimensional Array1.7.4 Two Dimensional […]
Even Odd Program Using Ternary Operator In C Programming ternary operator or conditional operator is an alternative of if else statement in c programming. syntax of ternary operator is given as ( condition ) ? expression 1 : expression 2 if the mentioned condition is true then expression 1 will be execute otherwise expression 2 will […]
Table of Contents1 JDBC ( Java Database Connectivity) Tutorial2 Types of Driver JDBC ( Java Database Connectivity) Tutorial JDBC is known as java database connectivity. To connect java with any database we require a jdbc driver which implements all the interfaces provided in sql package. Java provides jdbc-odbc bridge driver. Figure 1: Java Application […]