代码搜索:Multiple
找到约 9,501 项符合「Multiple」的源代码
代码结果 9,501
www.eeworm.com/read/452695/7436411
c program7_05a.c
/* Program 7.5A Arrays and pointers taken further */
#include
int main(void)
{
char multiple[] = "another string";
printf("\nAddress of second element: %p", &multiple[1]);
pr
www.eeworm.com/read/451432/7463973
m untitled3.m
fid = 1;
len = 209715;
%随机生成要隐藏的秘密信息
d = randsrc(1, len, [0 1]);
block = [3, 3];
[fn, pn] = uigetfile({'*.bmp', 'bmp file(*.bmp)';}, '选择载体');
s = imread(strcat(pn, fn));
ss = size(s);
if(lengt
www.eeworm.com/read/449030/7519917
c multtest.c
/* multtest.c - An example of using multiple input values */
#include
int main()
{
int i = 10;
int j = 20;
int k = greater(i, j);
printf("The larger value is
www.eeworm.com/read/449030/7519921
s fpmathfunc.s
# fpmathfunc.s - An example of reading multiple input values
.section .text
.type fpmathfunc, @function
.globl fpmathfunc
fpmathfunc:
pushl %ebp
movl %esp, %ebp
flds 8(%ebp)
fidiv 12(%ebp)
www.eeworm.com/read/449030/7519923
s greater.s
# greater.s - An example of using multiple input values
.section .text
.globl greater
greater:
pushl %ebp
movl %esp, %ebp
movl 8(%ebp), %eax
movl 12(%ebp), %ecx
cmpl %ecx, %eax
jge e
www.eeworm.com/read/446736/7567340
cpp mysvd.cpp
#include "stdafx.h"
#include "matlab.h"
static double data[] = { 21, 3, 15, 57, 12, 83, 6, 90 };
int mysvd()
{
/* Initialize pointers to array arguments */
mxArray *X = NULL;
mxAr