programming overflow
Saturday, October 31, 2015
Output of program
›
public class Test { public static int y; public static void foo( int x) { System.out.print( "foo ...
Friday, October 30, 2015
Assert in java
›
Refer to http://www.javatpoint.com/assertion-in-java
Thread And Runnable both have run method which one will be called?
›
class MyThread extends Thread { MyThread() {} MyThread(Runnable r) { super (r); } public void run() { ...
IllegalThreadStateException
›
class MyThread extends Thread { public static void main(String [] args) { MyThread t = new MyThread(); ...
short circuit operator in java
›
class BoolArray { boolean [] b = new boolean [ 3 ]; int count = 0 ; void set( boolean [] x, int i) { x[...
Output of program
›
class SC2 { public static void main(String [] args) { SC2 s = new SC2(); s.start(); } void start...
Sunday, September 7, 2014
Implement a stack using one queue
›
Implement stack only using one queue. #include<stdio.h> #include<stdlib.h> typedef struct queue node; struct...
‹
›
Home
View web version