代码搜索:fprintf
找到约 10,000 项符合「fprintf」的源代码
代码结果 10,000
www.eeworm.com/read/308787/13692114
m moon.m
% create a movie (or play it) showing the interferences
% between a sinusoid, a logon and a rotating logon
% F. Auger, oct 1999
% Copyright (c) CNRS - France 1999.
%
% ------------------- CON
www.eeworm.com/read/308787/13692130
m pwvmovie.m
% create a movie (or play it) showing the trade-off
% for the pweudo Wigner-Ville Distribution
% F. Auger, oct 1999
% Copyright (c) CNRS - France 1999.
%
% ------------------- CONFIDENTIAL PR
www.eeworm.com/read/308670/13696777
c die.c
#include
#include
#define DIE \
fprintf(stderr, "Fatal Error:Abort\n");exit(8);
int main() {
/* a random value for testing */
int value;
value = 1;
www.eeworm.com/read/308602/13699159
m e0335.m
fid=fopen('cfs.dat','w');
ii=1:10;
square=ii.^2;
cube=ii.^3;
A=[square;cube];
count=fprintf(fid,'%f',A);
fclose(fid);
www.eeworm.com/read/308602/13699171
m e0336.m
n=input('Please input the number of student?');
fid=fopen('ss.txt','w');
for i=1:n
n=input('name=?','s');
s=input('score=?');
fprintf(fid,'%8s%6.1f\n',n,s);
end
fclose(fid);
www.eeworm.com/read/308442/13701034
c ferror.c
#include
#include
void main (int argc, char *argv[])
{
FILE *fp;
char line[256];
if (fp = fopen(argv[1], "r"))
{
while (fgets(line, sizeof(lin
www.eeworm.com/read/308442/13701294
c no_redir.c
#include
#include
void main (void)
{
union REGS inregs, outregs;
// check the stdin handle first
inregs.x.ax = 0x4400;
inregs.x.bx = 0; // stdin
www.eeworm.com/read/308183/13706259
m read_data.m
n=2000;
[fid,message]=fopen('C:\Users\DELLPC\Desktop\5月2日\区域分割\vertex.txt','w');
if fid==-1
disp(message);
end
a=rand(n,3);
fprintf(fid,'%10.6f%10.6f%10.6f\r\n',a);
www.eeworm.com/read/308157/13707064
c 读写文本文件.c
#include "stdio.h"
void main()
{
FILE *funny,*printer,*fp;
char c;
funny = fopen("TENLINES.TXT","r"); /*打开文本文件 */
printer = fopen("PRN","w"); /*开启打印机*/
fp = fopen("weew.
www.eeworm.com/read/307894/13713334
m oqpsk.m
% Program 3-11
% oqpsk.m
%
% Simulation program to realize OQPSK transmission system
%
% Programmed by H.Harada and T.Yamamura
%
%******************** Preparation part ***********************