Posts

Showing posts from August, 2024

Life cycle of a thread

Image
⋮ Mindvault360 Introduction to Java FEATURES OF JAVA OOPS Concepts Java Tokens Java statements Java Datatypes Type Casting Operators Expression, Scanner Class and Control Structures Control Statements in Java Loops in Java Functions in Java Arrays in Java Java String Java Regex Java Methods Java Constructor Java Modifiers Java Inheritance Java Abstraction Java Encapsulation Java Polymorphism Java Interface Java Recursion Java Final Class Java Keywords Java Inner Class Java Singleton Class Java Object Class Java Garbage Collection and Finalize Class Java Enumeration Multithreading Life cycle of a thread Thread Priority Thread Scheduler Thread.sleep() in Java Java join() method Daemon Thread in Java Java Thread Pool ThreadGroup in Java Java Shutdown Hook Java Runtime class Synchronization in Java Deadlock in Java Inter-thread Communication in Java Exception in Java Date and time class in Java Java FileStream Seria...

Multithreading

⋮ Mindvault360 Introduction to Java FEATURES OF JAVA OOPS Concepts Java Tokens Java statements Java Datatypes Type Casting Operators Expression, Scanner Class and Control Structures Control Statements in Java Loops in Java Functions in Java Arrays in Java Java String Java Regex Java Methods Java Constructor Java Modifiers Java Inheritance Java Abstraction Java Encapsulation Java Polymorphism Java Interface Java Recursion Java Final Class Java Keywords Java Inner Class Java Singleton Class Java Object Class Java Garbage Collection and Finalize Class Java Enumeration Multithreading Life cycle of a thread Thread Priority Thread Scheduler Thread.sleep() in Java Java join() method Daemon Thread in Java Java Thread Pool ThreadGroup in Java Java Shutdown Hook Java Runtime class Synchronization in Java Deadlock in Java Inter-thread Communication in Java Exception in Java Date and time class in Java Java FileStream Seria...

I/O FUNCTIONS IN C

Image
⋮ Mindvault360 Introduction to C Features of C Datatypes in C Variables Structure of C Program Compiling and Executing C Program Basic Program in C Tokens in C STORAGE CLASSES in C I/O FUNCTIONS IN C DYNAMIC MEMORY MANAGEMENT Error handling in C Pointers C           Input/Output (I/O) functions in C are used to perform input and output operations between a program and the user or the system. Some of the commonly used I/O functions in C are:   printf(): This function is used to print formatted output to the console or terminal. It takes a format string and a list of arguments, which are used to format the output. Example 01: #include <stdio.h>   int main() {    char name[] = "John";    int age = 25;    printf("My name is %s and I am %d years old.\...