0

MCS023 Assignment 3

posted on , by Akshay Mishra

Please download the attachment ...

0

MCA2 assignment

posted on , by Akshay Mishra

We will upload all assignment of MCA2 before 28th mar ...

0

Prove that the inverse of one-one onto mapping is unique.

posted on , by Akshay Mishra

MCS013 - Assignment 8(d)A function is onto if and only if for every span class="MathJax" data-mathml="y" id="MathJax-Element-22-Frame" role="presentation" style="border: 0px; direction: ltr; display: inline; float: none; line-height: normal; margin: 0px; max-height: none; max-width: none; min-height: 0px; min-width: 0px; padding: 0px; position: relative; white-space: nowrap; word-spacing: normal; word-wrap: normal;" tabindex="0">yy in the codomain, there is an span class="MathJax" ...

0

Write a program in C language for addition of two numbers which have at least 20 digits each

posted on , by Akshay Mishra

#include<stdio.h>#include<conio.h>#include<string.h>void main(){char str1[21],str2[21];int i,j,a[20],b[20];int add[21]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; printf("\n Enter number 1:"); for(i=0; i<21; i++) { str1[i]=getchar(); } printf("\n Enter number 2:"); for(i=0; i<21; i++) { str2[i]=getchar(); } //converting char to integer for(i=0; i<20; i++) { a[i]=(int)str1[i]-48; b[i]=(int)str2[i]-48; } printf("\n Print Number 1:"); for(i=0; i<20; i++) { printf("%d",a[i]); } printf("\n ...