Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.7K
~471 People Reached
Interests
Programming
Favorite Forums
Favorite Tags
Member Avatar for Vish0203

i wrote a program to determine the binary digits of the entered integer. I want to implement it in other programs directly, instead of typing the same code again n again. Does anyone know? how to do that????????? #include<conio.h> #include<stdio.h> int main() { int n,a[20],i=0; printf("Enter a number: "); scanf("%d",&n); …

Member Avatar for Sky_Flyer
0
191
Member Avatar for srinidelite

Hello Everbody, I have 2 arrays called Array 1 Array 2 Stuid stuname stuid Bookname 1 Albie 1 OOPS 2 Morkel 2 CNA 3 Jmes 1 ComputerNw 3 OOPs 2 CNA Code: #include<stdio.h> main() { // char array1[2][1],array2[5][1]; char array1[100][100]={'ID1','srini','ID2','Albie','ID3','Kaasi'}; char array2[50][100]={'ID1','OOPS','ID2','STS','ID1','STS','ID1','CTC','ID3','MAT','ID2','MAT'}; printf("We're Begining the Comaprison Here !!\n\n"); search(array1[][],array2[][]); } …

Member Avatar for Sky_Flyer
0
280