Java

Java is a set of computer software and specifications developed by Sun Microsystems, which was later acquired by the Oracle Corporation, that provides a system for developing application software and deploying it in a cross-platform computing environment. Java is used in a wide variety of computing platforms from embedded devices and mobile phones to enterprise servers and supercomputers.

123

Tuesday, June 25, 2013

Important C written Test Programs...

P { margin-bottom: 0.08in; direction: ltr; color: rgb(0, 0, 0); line-height: 115%; widows: 2; orphans: 2; }P.western { font-family: "Calibri",sans-serif; font-size: 11pt; }P.cjk { font-family: "Calibri",sans-serif; font-size: 11pt; }P.ctl { font-family: "Times New Roman",serif; font-size: 11pt; } Write a C program to print a message without using semicolon(;)#include<stdio.h>#include<stdlib.h>intmain(void) {    if(printf("Hello to Ranga")) {   }   returnEXIT_SUCCESS;}Output: Hello to...