代码搜索:implicit
找到约 5,250 项符合「implicit」的源代码
代码结果 5,250
www.eeworm.com/read/368572/9685801
h links.h
/* links.h
* (c) 2002 Mikulas Patocka, Karel 'Clock' Kulhavy, Petr 'Brain' Kulhavy,
* Martin 'PerM' Pergel
* This file is a part of the Links program, released under GPL.
*/
/*
* WARNIN
www.eeworm.com/read/367631/9739335
f90 find_number.f90
FUNCTION FIND_NUMBER(A,NUM,SOURCE)
IMPLICIT NONE
INTEGER FIND_NUMBER,NUM,A(NUM),SOURCE,I
FIND_NUMBER=0
DO I=1,NUM
IF(A(I)==SOURCE)THEN
FIND_NUMBER=1
END IF
END DO
END FUNCTION FIND_NU
www.eeworm.com/read/135430/13933613
cce pwm10.cce
Warning[000] E:\PIC\PIC16F627A\oil level sensor\pwm10.c 20 : implicit conversion of float to integer
www.eeworm.com/read/201682/15398693
eop
child.c:5: warning: function declaration isn't a prototype
child.c:9: warning: function declaration isn't a prototype
child.c: In function `main':
child.c:12: warning: comparison between pointer an
www.eeworm.com/read/103770/15721733
acf hello.acf
[implicit_handle(handle_t hello_IfHandle)]
interface hello
{
}
www.eeworm.com/read/103770/15721749
acf hello.acf
[implicit_handle(handle_t hello_IfHandle)]
interface hello
{
}
www.eeworm.com/read/390183/8480492
asm expimp.asm
;
; Test of explicitly and implicitly sized operands
;
add esi,2 ; Implicit
add esi,123456h ; Implicit
add esi,byte 2 ; Explicit
add esi,dword 2 ; Explicit
add esi,dword 123456h ;
www.eeworm.com/read/429726/8792625
txt rfc1155-smi.txt
RFC1155-SMI DEFINITIONS ::= BEGIN
EXPORTS -- EVERYTHING
internet, directory, mgmt,
experimental, private, enterprises,
OBJECT-TYPE, ObjectName, ObjectSyntax, SimpleSyntax,
www.eeworm.com/read/183630/9146968
f90 ex1103.f90
module MA
implicit none
real a,b
contains
subroutine getx()
write(*,"('x=',F5.2)") -b/a
return
end subroutine
end module
module MB
use MA
implicit none
real c
contain
www.eeworm.com/read/183629/9146991
f90 ex1013.f90
module typedef
implicit none
type :: datalink
integer :: i
type(datalink), pointer :: prev ! 指向上一条数据
type(datalink), pointer :: next ! 指向下一条数据
end type datalink
end module typ