Home
- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The short keyword in Java programming language
The short keyword in Java programming language In this tutorial, we learn about the short keyword in java programming language. The short keyword is a Java keyword used to declare a type of numeric variable. A short variable can hold a 16-bit integer number which ranges from -32,768 to 32767 Declaration short – in variable…
Read More- On
- By
- 0 Comment
- Categories: Keyword in Java
The int keyword in Java programming language
The int keyword in Java programming language In this tutorial, we will discuss the int keyword in java programming language In Java programming language, “int” is the keyword used to store the integer value. int allows the creation of methods with the return value. It is a primitive data type in Java programming languages. It holds…
Read More- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The void keyword in Java programming language
The void keyword in Java programming language In this tutorial, we will discuss The void keyword in java programming language The void keyword is a Java keyword. This keyword allows us to create methods which do not return a value. Which means void is a special type of keyword in Java as a void keyword…
Read More- On
- By
- 0 Comment
- Categories: Access modifiers, Keyword in Java
The protected keyword in Java programming language
The protected keyword in Java programming language In this tutorial, we will discuss about the protected keyword in java programming language protected is a keyword in java programming language and an access modifier. This keyword can be used to define a method or a variable of a class. When a variable or a method is declared…
Read More- On
- By
- 0 Comment
- Categories: Access modifiers, Keyword in Java
The private keyword in Java programming language
The private keyword in Java programming language In this tutorial, we will discuss the private keyword in java programming language private is a Java keyword used to declare a member’s access as private(access modifier). When we declare access modifier as private, we can only access within the class. We can not access from other class…
Read More- On
- By
- 0 Comment
- Categories: Access modifiers, Keyword in Java
The public keyword in Java programming language
The public keyword in Java programming language In this tutorial, we will learn about The public keyword in java programming language public is a keyword and an access modifier In the Java programming language. It is used for member’s to access as public. This keyword can be used to define a class, a method or…
Read More- On
- By
- 1 Comment
- Categories: keyword, Keyword in Java
The break keyword in Java programming language
The break keyword in Java programming language In this tutorial, we will discuss The break keyword in Java programming language. the break is a keyword in Java programming language which causes the loop to terminate or to exit execution of for loop, while loop, do-while loop and switch case statements. When the break statement is used…
Read More- On
- By
- 0 Comment
- Categories: keyword, Keyword in Java
The abstract keyword in Java language
The abstract keyword in Java language Here, we learn about The abstract keyword in Java language. The abstract is a keyword in Java programming language. it can be applied to class and methods when a class is declared as abstract it called as the abstract class. In other words, if a class has any abstract…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strcmp string function in C programming Language
strcmp string function in C programming Language We will learn about strcmp string function in C programming Language Description strcmp() – In the C Programming Language, the strcmp function is a comparison operator. It compares two Strings and displays an integer value returns either negative, positive integer or zero Declaration Syntax for strstr() function is given…
Read More- On
- By
- 0 Comment
- Categories: function in C, Pre-define String function in C
strstr string function in C programming language
strstr string function in C programming language In this tutorial, We will learn about the strstr string function in C programming language and its functionality. Description strstr() – In the c programming language, the strstr function is used to locate the first occurrence of the substring pointed by the str2 within str1 string. Declaration Syntax for…
Read More