What is the diffences between Windows XP and Windows Visa
XP - works on 32 bit processor
Vista or Longhorn - 64 bit (recommended) for good
performance
Vista has a better GUI (Graphic User Interface) compared to
XP.
searches are more indexed than in XP.
--thats all i can remember for this moment.. hope it helps..
Regards,
Shruti
| Is This Answer Correct ? | 4 Yes | 1 No |
What is a substring in c?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
Explain 'bus error'?
Can we assign string to char pointer?
In c programming language, how many parameters can be passed to a function ?
What is an expression?
Is c is a procedural language?
What are linked lists in c?
Which of these functions is safer to use : fgets(), gets()? Why?
Explain the concept and use of type void.