How to run the Result Intemation System project in java for
collage student in which result of internal exam marks send
on parents mobile using SMS? what software required to run
this project? please reply immediately...
392
How can import
database to mysql
using php code?
289
How can I Draw an ellipse in 3d space and color it by using
graph3d?
411
Write a program to convert postfix expression to infix
expression.
what mean void creat_object?in public class
in this code
class A{
public:
int x;
A(){ cout << endl<< "Constructor A";}
~A(){ cout << endl<< "Destructor A, x is\t"<< x;}
};
void create_object();
void main()
{
A a;
a.x=10;
{
A c;
c.x=20;
}
create_object();
}
void create_object()
{
A b;
b.x=30;
}