Interfaces and Architectures
In the previous post We have discussed two parts of the world of Java, the development environment and the execution
Read moreIn the previous post We have discussed two parts of the world of Java, the development environment and the execution
Read moreWe have said that the JVM operates on the stream of bytecode as an interpreter. This means that it processes
Read moreOnce you have installed the Java 2 SDK, you can start creating Java source code and compiling it. Java is
Read moreThere are a number of different components to Java: 1. Development environment The Java 2 SDK contains the tools and
Read more#include <stdio.h> #include <time.h> int main() { time_t s, val = 1; struct tm* current_time; s = time(NULL);
Read moreA pointer is a variable that stores the address of another variable. Unlike other variables that hold values of a
Read moreStructure is a group of variables of different data types represented by a single name. Lets say we need to
Read moreBefore we discuss function call by reference, lets understand the terminologies that we will use while explaining this: Actual parameters:
Read moreA function is a block of statements that performs a specific task. Suppose you are building an application in C
Read moreString is an array of characters. In this post, we learn how to declare strings, how to work with strings
Read more