Forum: Java Dec 17th, 2008 |
| Replies: 2 Views: 333 hai there!am a beginner in java.am familiar with c,c++ and object oriented programming principles.someone please suggest me a book or a student friendly site(online materials preffered) that i can... |
Forum: C++ Sep 24th, 2008 |
| Replies: 3 Views: 360 Is it possible for a function to return a string,an array of characters to the calling function?
i mean something like
char f1()
{
char www="nima";
return(www);
}
if not,please... |
Forum: C Apr 22nd, 2008 |
| Replies: 1 Views: 620 someone please help me to write a program that would replace all occurances of a substring in a string ,with a given string.if the input string is "the the the the",& if the substring to be deleted &... |
Forum: C Apr 18th, 2008 |
| Replies: 2 Views: 1,000 iam a 1st yr b.e stucent.i was attending my c.p lab viva.i was asked to write a program that would exchange 2 variables without using a third variable.i could'nt do it.i know how to exchange the... |
Forum: C Mar 12th, 2008 |
| Replies: 6 Views: 705 1)declare the 2-d array say a[3][3].initialisation can be done like this
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
scanf("%d",&a[i][j]);
}
}
/*to... |