- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 6
- Posts with Upvotes
- 3
- Upvoting Members
- 6
- Downvotes Received
- 9
- Posts with Downvotes
- 7
- Downvoting Members
- 6
14 Posted Topics
"\n" for new line "\b" for a backspace, means if u print it, cursor will print and come back 1 character. For example.... cout<<"hello\bHi"; will print "HellHi". because after printing Hello, compiler found a \b escape sequence. so it came 1 character back (at 'o' of Hello) and stat printing …
Hello Everyone,:idea: Im seeking advice about cellphone programming, more specifically what is the language/tool or plateform for cellphone programming or "Reprogramming the cellphone to our own needs".
[B]what will be the query for ms access table to update a specific row? Code below is not making a valid result set resulting in exception? need help[/B]:-/ [CODE] import java.sql.*; class OdbcAccessQuery { public static void main(String [] args) { Connection con = null; try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); con = …
[B]somebody please tell me why im not getting String(X) value as ID,Name,FName are being printed on console correctly but the name of ID(4) from my DB_table is not going into string(X); [/B] [CODE] package gym.resources.busyicons; import java.sql.*; class OdbcAccessQuery { public static void main(String [] args) { Connection con = …
Salam Sima, no body is free to code for u, if u have a syntax or logical problem then ask.
Salam Mr.Saad this is not the way u ask. show some code, or ur attempt, if u are stuck somewhere. we will help u.
Hi Everybody, Kindly justify which compiler/IDE for Java is the best. i vote for JCreator!
#include <iostream> using namespace std; int main() { int i=0; int s=1; int N; int factorial=1; int sum=1; cout << "Please Enter a number"; cin >> N; while(N>1) { factorial = N * (N-1); sum*=factorial; N-=2; } cout<<sum<<endl; return 0; }
ur code is getting hanged in the nested loop. correct that
graphics in dos console are so hectic, if its a high school project then forget including graphics because you will not learn anything, when u will proceed to higher languages like java... you will not need graphics like that, they will provide you interface with facilities. Forget graphics now. C++ …
float and int not necessarily takes same size as datatypes. its architecture dependent. int take 2 bytes and 4 bytes, depends on architecture and compiler as well.
Link List for the beginners of cpp, who want to get the idea about link list before starting OOP. its implemented by struct for best teaching the design standards to beginners.
The End.
warbird43