代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/470720/1445357
c static5.c
// Build don't link:
// Origin: Mark Mitchell
struct S
{
~S();
};
inline void f()
{
static S s;
atexit (0); // ERROR - implicit declaration
}
www.eeworm.com/read/470693/1457303
c static5.c
// Build don't link:
// Origin: Mark Mitchell
struct S
{
~S();
};
inline void f()
{
static S s;
atexit (0); // ERROR - implicit declaration
}
www.eeworm.com/read/460526/1560710
f90 game.f90
module GAME
use SGL
use utility
implicit none
integer, parameter :: SX = 210, SY = 430
integer, parameter :: BoundX = 5, BoundY = 15
integer, parameter :: BatRadius = 8, BallRadius =
www.eeworm.com/read/247171/4486139
vb implicitconversions.vb
Namespace Conversions
Namespace Implicit
Public Class SByteConversions
Public Sub ToSByte()
Dim i As SByte
i = CSByte(20)
Assert.AreEqual(i, 20, "i should be
www.eeworm.com/read/233448/4678692
f90 intrinsic_product.f90
! Program to test the PRODUCT intrinsic
program testproduct
implicit none
integer, dimension (3, 3) :: a
integer, dimension (3) :: b
logical, dimension (3, 3) :: m, tr
character(len=12)
www.eeworm.com/read/233448/4678751
f90 intrinsic_sum.f90
! Program to test the FORALL construct
program testforall
implicit none
integer, dimension (3, 3) :: a
integer, dimension (3) :: b
logical, dimension (3, 3) :: m, tr
integer i
charac
www.eeworm.com/read/233448/4678775
f90 intrinsic_anyall.f90
! Program to test the ANY and ALL intrinsics
program anyall
implicit none
logical, dimension(3, 3) :: a
logical, dimension(3) :: b
character(len=10) line
a = .false.
if (any(a)) cal
www.eeworm.com/read/233448/4678779
f90 intrinsic_dummy.f90
! Program to test passing intrinsic functions as actual arguments for
! dummy procedures.
subroutine test (proc)
implicit none
real proc
real a, b, c
a = 1.0
b = sin (a)
c = proc (a
www.eeworm.com/read/233448/4678846
f90 intrinsic_dotprod.f90
! Program to test the DOT_PRODUCT intrinsic
program testforall
implicit none
integer, dimension (3) :: a
integer, dimension (3) :: b
real, dimension(3) :: c
real r
complex, dimension