代码搜索:notation
找到约 2,214 项符合「notation」的源代码
代码结果 2,214
www.eeworm.com/read/237003/13982835
cpp outer.cpp
/*****************************************************************************
* outer.cpp Blitz++ outer product (tensor notation) example
* $Id: outer.cpp,v 1.5 2004/10/07 01:23:26 julianc E
www.eeworm.com/read/200886/15420646
m printsci.m
% function str = printSci(num,s)
%
% prints in scientific notation, with s significant digits
function str = printSci(num,s)
if (~exist('s'))
s=3;
end
formatString=['%.' num2str(s) 'e'];
str=spri
www.eeworm.com/read/113029/15472461
cpp fig05_21.cpp
// Fig. 5.21: fig05_21.cpp
// Copying a string using array notation
// and pointer notation.
#include
using std::cout;
using std::endl;
void copy1( char *, const char * ); // pro
www.eeworm.com/read/188512/8532988
cpp fig08_21.cpp
// Fig. 8.21: fig08_21.cpp
// Copying a string using array notation and pointer notation.
#include
using std::cout;
using std::endl;
void copy1( char *, const char * ); // prototype
www.eeworm.com/read/479166/6700166
cpp fig08_21.cpp
// Fig. 8.21: fig08_21.cpp
// Copying a string using array notation and pointer notation.
#include
using std::cout;
using std::endl;
void copy1( char *, const char * ); // prototype
www.eeworm.com/read/403933/11498574
html help.io.html
Instruction : IO
IO
This is the input/output instruction. It takes the contents of the ?BX?
www.eeworm.com/read/403933/11498604
html help.if-less.html
Instruction : if-less
if-less
This instruction compares the ?BX? register to its
www.eeworm.com/read/256102/12028249
cpp fig08_21.cpp
// Fig. 8.21: fig08_21.cpp
// Copying a string using array notation and pointer notation.
#include
using std::cout;
using std::endl;
void copy1( char *, const char * ); // prototype
www.eeworm.com/read/208576/15243854
cpp fig08_21.cpp
// Fig. 8.21: fig08_21.cpp
// Copying a string using array notation and pointer notation.
#include
using std::cout;
using std::endl;
void copy1( char *, const char * ); // prototype
www.eeworm.com/read/162614/5520002
c init6.c
// { dg-do run }
// Test for default-initialization of POD-structs in functional cast notation.
struct foo { int a[10]; };
int main()
{
foo f = foo();
int r = 0;
for (int i = 0; i < 10; ++i)