Object Oriented Programming in java - Learn Programming in 30days
Update will soon........
Lorem Ipsum has been the industry's standard dummy text.
Update will soon........
java is one the top most technology in present technology world. In java we Have three different parts in core java, 1.J2SE 2.J2EE 3.J2ME J…
making any application -> objects -> commands -> compiler objects: These are real world machines or softwares. which contains …
#include<stdio.h> main() { int a; for(a=1;a<=10;a++) { printf("%d ",a); } } output: 1 2 3 4 5 6 7 8 9 10
sum of two numbers using do while #include<stdio.h> main() { int a,b,n; do { printf("Enter two values:"); scanf…
#include<stdio.h> main() { int a=1; while(a<=10) { printf("%d ",a); a++; } } output: 1 2 3 4 5 6 7 8…
#include<stdio.h> main() { int choice; printf("Enter your choice:"); scanf("%d",&choice); switch(choice) …
#include<stdio.h> main() { int a,b; printf("Enter two numbers:"); scanf("%d%d",&a,&b); if(a>b) { …
scanf(): scanf() is a predefined function in "stdio.h" header file. It can be used to read the input value from the keyword we can en…
Source file: This is a file which contains instruction or code given by the programmer. in C the source file is very important for making the appl…
what is variable in C? variables: A name given to the memory location. Variable is used to get the stored values easily into our program.…
How to write a C-program: I'm using DevC++: 1.Open IDE(Integrated Development Environment): 2.File--->New----->Source File (Shortcut …
Calculator in java AWT import java.awt.*; import java.awt.event.*; import java.applet.*; class Calc implements ActionListener { Frame …
print the even numbers in between given range #include<stdio.h> #include<conio.h> int main() { int start,end; printf…
print the even numbers in between given range #include<stdio.h> #include<conio.h> int main() { int start,end; printf("Ent…