No. However, it is possible to return pointers to structures and functions.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
There are 3 main uses for the static.
1. If you declare within a function:
It retains the value between function calls
2.If it is declared for a function name:
By default function is extern..so it will be visible from other files. if the function declaration is as static, it is invisible for the outer files
3.Static for global variables:
By default we can use the global variables from outside files If it is static global..that variable is limitied to with in the file
Create Date
:
Tuesday, September 11, 2007
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
There are numerous good possibilities:
Loyalty, Energy, Positive
attitude, Leadership, Team player, Expertise, Initiative, Patience,
Hard work, Creativity, Problem solver.
Create Date
:
Thursday, September 18, 2008
Tags
:
interview,
general,
business,
network,
hr,
human resource,
SQL,
integer,
character,
management,
Flexibility,
organization,
efficiency,
general interview,
leadership,
manager,
human resources,
Microsoft,
accounting,
work attitude,
supervision,
PUZZLE
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
var myValue =9.8;
if(parseInt(myValue)== myValue)
alert('Integer');
else
alert('Not an integer');
Create Date
:
Sunday, May 11, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
var myValue =9.8;
if(parseInt(myValue)== myValue)
alert('Integer');
else
alert('Not an integer');
Create Date
:
Sunday, May 11, 2008
Click here
to improve the Interview Question, Answer and other fields.
|
|
Inappropriate
|
See Answer
To Email:
Subject:
Note to go along with the question: (Optional, no
more than 1,000 characters)
Yes, internally PHP will cast everything to the integer type, so numbers 10 and 11 will be compared.
Create Date
:
Sunday, May 11, 2008
Click here
to improve the Interview Question, Answer and other fields.