代码搜索:Assignment
找到约 8,196 项符合「Assignment」的源代码
代码结果 8,196
www.eeworm.com/read/233527/4666818
c main.c
/*
This program solves assignment problems posed in DIMACS format.
Written by Robert Kennedy
Department of Computer Science
Building 460
Stanford University
Stanford, CA 94305-2140
www.eeworm.com/read/233522/4668122
c s_copy.c
/* Unless compiled with -DNO_OVERWRITE, this variant of s_copy allows the
* target of an assignment to appear on its right-hand side (contrary
* to the Fortran 77 Standard, but in accordance with
www.eeworm.com/read/229812/4747418
ctrans
# First, change over comment delimiters
/{/s//\/* /g
/}/s// *\//g
# Then the block start and end
/begin/s//{/g
/end/s//}/g
# Stash away assignment ops and the rel
www.eeworm.com/read/229812/4752048
gml wdbgtech.gml
.chap Techniques for Tracking Down Bugs in a Program
.*
.np
A common execution error is the "Null Assignment". The C programming
language makes use of the concept of a NULL pointer. The NULL point
www.eeworm.com/read/283334/4082892
tex url.tex
\section{\class{wxURL}}\label{wxurl}
Parses URLs.
Supports standard assignment operators, copy constructors,
and comparison operators.
\wxheading{Derived from}
\helpref{wxURI}{wxuri}
\
www.eeworm.com/read/281827/4112412
c main.c
/*
This program solves assignment problems posed in DIMACS format.
Written by Robert Kennedy
Department of Computer Science
Building 460
Stanford University
Stanford, CA 94305-2140
www.eeworm.com/read/281827/4112419
c main.c
/*
This program solves assignment problems posed in DIMACS format.
Written by Robert Kennedy
Department of Computer Science
Building 460
Stanford University
Stanford, CA 94305-2140
www.eeworm.com/read/366702/2876053
f90 default_initialization_2.f90
! { dg-do compile }
! This tests the patch for PR29098, in which the presence of the default
! initializer would cause allocate to fail because the latter uses
! the interface assignment. This, in it
www.eeworm.com/read/366702/2876924
f90 dependency_19.f90
! { dg-do compile }
! Tests the fix for PR30273, in which the pointer assignment was
! wrongly determined to have dependence because NULL() was not
! recognised by the analysis.
!
! Contributed by Har
www.eeworm.com/read/366702/2881589
c lvalue1.c
/* PR c/5225 */
/* { dg-do compile } */
int main()
{
int i;
+i = 1; /* { dg-error "lvalue required as left operand of assignment" } */
return 0;
}