sir, i am new to .net and IIS.I have successfully installed IIS server on my computer,but when trying to run ,it gave the following error....
dear sir, i am unable to short out a problem that i get when inserting this <appSettings....> code in web.config file.i think i am not placing it...
Dear sir, i am new to ASP.NET programming ,through c#. In my web project,i am inserting into SqlServer Database through Command.Text method.It...
void main(int argc,char *argv[]) { printf("\n%c",++(*(++(*++argv)))); } Running the executable file of this program at command line,with...
hi friends, plz give some concrete points about near,far and huge pointers. Or any web resourse.
int *dangle(int num) { int temp=5; return(&temp); } void main() { int *iptr,deng=56; iptr=dangle(deng); printf("%d",*iptr); } I...
Consider the declaration: main() { struct num { a:1; }; struct num A; A.a=0; printf("%d",A.a); } It gave output 0,that's...
class InstanceTest { public static void main(String [] args) { InstanceTest ob1=new InstanceTest(); Object ob2=ob1;...
1. StringBuffer s1 = new StringBuffer("abc"); 2. StringBuffer s2 = s1; 3. StringBuffer s3 = new StringBuffer("abc"); How many objects are created ?
class C { static int f1(int i) { System.out.print(i+","); return 0; } public static void main(String [] args) { int...
import java.awt.*; import java.awt.event.*; import java.applet.*; /* <applet code="AdapterDemo" width=300 height=100> </applet> */...
#include<stdio.h> main() { float i=65.8; printf("i= %f",i); } with reference to the above code, output of this prgogram is i=65.800003...
plz help me in getting the points i'am missing to find why this code does not compile? class SuperBase { } class Base extends SuperBase { }...
With reference to the code below can u tell me when and how accept() method of FilenameFilter is called,and from where parameter of accept()...
1.what does enumeration do in collection framework and how? 2.how does comparator do the required ordering of objects in Collection?
import java.util.*; class Gclaendar extends GregorianCalendar { String toString() { return "hi...."; } } class...
#define pro(X) (X*X) main() { int i=3,j,k; j=pro(i++); k=pro(++i); printf("\n%d %d",j,k); getch(); } output is 9 49 can any one...
main() { float x=1.0; int y=3; printf("x=%d",x); printf("\ny=%f",y); } output: x=0 y=285737.000011(why this unexpected output?)...
i want to get the print of enumuration constants that has been defined in current enumeration in C language.how?
Separate names with a comma.