Program demonstrating For loop and Functions > Matlab Get link Facebook X Pinterest Email Other Apps July 12, 2016 Program demonstrating For loop and Functions > Matlab Soft Computing exp1.m clcclear alla=mysq(675);ab=fnew(10) mysq.m function x=mysq(a) x=a*a+2*a; fnew.m function x=fnew(a) sum=0for i=1:a sum=sum+i;endx=sum Get link Facebook X Pinterest Email Other Apps Comments
Implement Client/Server using RPC > Java Program March 06, 2017 Implement Client/Server using RPC > Java Program Parallel and Distributed Systems View more »
Intermediate Code Generation > C Program March 30, 2016 Intermediate Code Generation > C Program System Programming and Compiler Construction Program: #include<stdio.h> #include<conio.h> #include<string.h> char op[2],arg1[5],arg2[5],result[5]; void main() { FILE *fp1,*fp2; fp1=fopen("input.txt","r"); fp2=fopen("output.txt","w"); while(!feof(fp1)) { View more »
Transposition Cipher Implementation > C Program February 03, 2017 Transposition Cipher Implementation > C Program Cryptography and System Security Program: #include<stdio.h> int check(int x,int y) { View more »
Comments
Post a Comment