There is so many ways to compile and run any c program .
1) Use the online C Compiler to execute your program.If you want to execute one and two programs just for testing then you can use online compilers. Which is available on internet, just you have to google for "Online C Compiler. You will get many links which provides...
Thursday, January 14, 2021
Thursday, May 21, 2020
Thursday, May 14, 2020
14
May
Data Types
in Java
Primitive Data Type
Non-Primitive Data Type
Primitive
Data Type:–
Integer type –
byte (Memory Capacity - 8 bit)
short (Memory Capacity -16 bit)
int (Memory Capacity 32 bit)
long (Memory Capacity - 64 bit)
Floating point types
float – (Memory Capacity 32 bit)
double - (Memory...
Wednesday, May 13, 2020
Click on the below link to open the excel sheet.
Click Her...
Tuesday, May 05, 2020
Follow the below steps one by one to download and install the MySQL in
windows system
Step
1. Search in google to download mysql and click on the first link “MySQL
Downloads – MySQL”.
Step 2. Click on “MySQL Community (GPL) Downloads”. It
will navigate to the next below screen.
Step 3. Click...
Sunday, May 03, 2020
03
May
JDK (Java Development
Kit) is the most important software which is required for compilation and run
any java program. So JDK must be installed in your system to run any java
program. Here we will learn how to download and install JDK in windows
operating system. But before installing JDK make sure that JDK should not...
03
May
1. The first simple java program is also known as "hello world" java program. The output of this program is to print "Hello world".
2. Below is the java program:
class MyClass
{
public static void main(String args[])
{
System.out.println("Hello world");
}
}
3. Brief description of this...
Page 1 of 11