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 #54.9K
~197 People Reached
Favorite Forums
Favorite Tags
c x 2
Member Avatar for serenezhu

Hi, in my pc I have 2 icons of local area connections. 1st icon is coonected my ethernet adaptor and 2rd icon connected to my modem. Firstly is tht the 1st icons tht connected to my modem have limited connectivity but the 2rd tht have my modem have internet connectivity. …

Member Avatar for serenezhu
0
103
Member Avatar for web_master

[CODE] #include<stdio.h> int main() { int i ,j ,a[5]; for(i=0;i<=4;i++) { printf("\n\tEnter the %dst value of the array: ", i+1); scanf("%d", &a[i]); } j = a[0]; printf("\n\tOriginal array entered by the user: "); for(i=0;i<=4;i++) { printf(" %d ", a[i]); if(a[i]<a[i+1]) { j = a[i+1]; } } printf("\n\n\tGreatest no. from the …

Member Avatar for varsha0702
0
94