Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Order of defining types

Is there any preference/convention/rule on order for defining a variable as static and long/double or other types?

e.g. is

static double a;

same as

double static a;

is it any different for functions? above, a is variable.

like image 835
user2178841 Avatar asked Jun 25 '13 09:06

user2178841


People also ask

Which information is required when you set up an order type?

Assigned Tags An order type contains control information that you need for managing orders. You have to assign every order to an order type. You can go through this route for defining order types at a client level: SPRO-Production-Shop floor control-Order types.

How do you define order type?

An order type includes a variety of control information that is important for managing orders. Each order must be assigned to an order type that passes certain parameters onto the order. Order types are client-independent, in other words, each order type can be used in all controlling areas.

What is order type in production order?

Order type defined in the Production scheduling Profile assigned to the Production scheduler (OPJ9) Order type defined in the Plant Parameter (OPPQ) Order Type defined in the MRP Group Parameters (OPPR) hope, this information helps to understand the Order type selection for production orders.


1 Answers

They are equivalent but static at the beginning is preferred.

(C99, 6.11.5p1) "The placement of a storage-class specifier other than at the beginning of the declaration specifiers in a declaration is an obsolescent feature"

like image 85
ouah Avatar answered Oct 09 '22 00:10

ouah