代码搜索:Assignment
找到约 8,196 项符合「Assignment」的源代码
代码结果 8,196
www.eeworm.com/read/475745/1382452
java floattest.java
class FloatTest {
public static void main(String args[]){
float floatSample[][] = new float[2][3];
System.out.println("Before assignment!\n");
for(int i=0;i
www.eeworm.com/read/470720/1445172
c typedef1.c
// Build don't link:
typedef const struct {
int x;
} Test;
static void foo(Test);
static void foo(Test t)
{
t.x = 0; // ERROR - assignment of read-only member
return;
}
www.eeworm.com/read/470720/1447638
c 900324_05.c
// g++ 1.37.1 bug 900324_05
// The following erroneous code causes g++ to segfault.
// Cfront 2.0 passes this test.
// keywords: segfault, arrays, references, assignment operator=
typedef int int_
www.eeworm.com/read/470693/1457118
c typedef1.c
// Build don't link:
typedef const struct {
int x;
} Test;
static void foo(Test);
static void foo(Test t)
{
t.x = 0; // ERROR - assignment of read-only member
return;
}
www.eeworm.com/read/470693/1459584
c 900324_05.c
// g++ 1.37.1 bug 900324_05
// The following erroneous code causes g++ to segfault.
// Cfront 2.0 passes this test.
// keywords: segfault, arrays, references, assignment operator=
typedef int int_
www.eeworm.com/read/455642/1609723
java floattest.java
class FloatTest {
public static void main(String args[]){
float floatSample[][] = new float[2][3];
System.out.println("Before assignment!\n");
for(int i=0;i
www.eeworm.com/read/242732/4536881
h rterror.h
/* rterror.h */
#ifndef __CRT_INTERNAL_RTERROR_H
#define __CRT_INTERNAL_RTERROR_H
#define _RT_STACK 0 /* stack overflow */
#define _RT_NULLPTR 1 /* null pointer assignment */
www.eeworm.com/read/240162/4582822
c 900324_05.c
// { dg-do assemble }
// g++ 1.37.1 bug 900324_05
// The following erroneous code causes g++ to segfault.
// Cfront 2.0 passes this test.
// keywords: segfault, arrays, references, assignment oper
www.eeworm.com/read/233448/4675640
c 900324_05.c
// { dg-do assemble }
// g++ 1.37.1 bug 900324_05
// The following erroneous code causes g++ to segfault.
// Cfront 2.0 passes this test.
// keywords: segfault, arrays, references, assignment oper
www.eeworm.com/read/227819/4768272
makefile
TARGET = rlm_cram
SRCS = rlm_cram.c
# over-ride the previous assignment if we're not building anything
include ../rules.mak
$(STATIC_OBJS): $(HEADERS)
$(DYNAMIC_OBJS): $(HEADERS)