Hi Gurus,
I got confused about a C global variable question.
There are 3 very simple C files:
mya.c
---------------------
#include <stdio.h>
int tv=10;
printav()
{
printf("&av= %x\tav = %d\n", &tv, tv);
}
------------------------
myb.c
------------------------
#include...
Dear all,
Please help me with this problem.
I have a Sun box with the Solaris 7, and now got such a problem. when I want to telnet to this machine from other site, the system will refuse my request by say "Unable to connect to remote host: Connection refused". This also will happen...
Hi,
I encountered a problem about the ORACLE standby database.
I created a standby database and when I enter the SQL statement "recover standby database" to recover it, I got the following message:
SVRMGR> connect internal
Connected.
SVRMGR> recover standby database;
ORA-00279: change...
I have question like this:
suppose I create a table:
create table mytable(msg raw(254));
and there is a record in this table which contains the following message like:
616C6D6B000000......
I want to retrieve the first character from table mytable, I use such a sql statement:
select...
I have question like this:
suppose I create a table:
create table mytable(msg raw(254));
and there is a record in this table which contains the following message like:
616C6D6B000000......
I want to retrieve the first character from table mytable, I use such a sql statement:
select...
I was confused about such a fact:
when I declare a array of char type like the following:
char name[30]="scott";
then I have a printf statement:
printf("Addr: %x\n&Addr: %x\n", name, &name);
I got the same value of these two address.
who can tell me the reason about...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.