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
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for b56r1

What is NIC ordering on bootup of Linux machines? what is its significance ? can anyone tell in detail.

Member Avatar for L7Sqr
0
147
Member Avatar for b56r1

Hi everybody. I am new to Network programming, i need some help :) I have 4 "Intel Corporation 82574L Gigabit Network Connection" ethernet adapters on sandy bridge system. I'm using Linux kernel 2.6.35.10. While i'm passing traffic from iperf software on any of ethX port and disconnect ethernet cable of …

Member Avatar for b56r1
0
352
Member Avatar for b56r1

Hi everybody. I have a doubt in one of the command which is shown below. 1. I created my own adding and multiplication funtion definitions saved in two separate files named "sum.c" and "mul.c". The function calls are present in "main.c" ofcourse. 2. I got the assembler output files by …

Member Avatar for rubberman
0
133
Member Avatar for slygoth

Write a function that accepts a pointer to a string and a character and returns the number of times the character is found in the string. [CODE] # include <stdio.h> # include <conio.h> # include <string.h> # include <stdlib.h> void countletter(char *str); int main() { char str; printf("Please enter a …

Member Avatar for slygoth
0
206
Member Avatar for george61

This is a fragment of a program for finding palindrome numbers.Every checked number is a string which is reversed...and I'm using array of strings which isn't done right. Any help will be greatly appreciated. [CODE]#include <stdio.h> #include <string.h> void isPalindrome(char *str1[],int l){ int str1size = strlen(str1[l]); int n; int misMatch …

Member Avatar for b56r1
0
107
Member Avatar for b56r1

int c; while ((c = getchar()) != EOF) In the above code, why it is prefereble to use variable 'c' as integer datatype rather than character datatype eventhough we are assigning characters to 'c' ? Can any one explain clearly??

Member Avatar for b56r1
0
112
Member Avatar for b56r1

#include<stdio.h> main() { int a=10; printf("%d %d %d\n",a=10,a=20,a=30); } o/p: 10 10 10. Here, the latest value is updated and printed as the expression statements separated by commas in funtions are evaluted from right to left. But, in below program by using global variable or static variable why the updated …

Member Avatar for pheininger
0
108
Member Avatar for b56r1
Member Avatar for b56r1

Hi, can anybody help me with this program output. Program is based on GCC compiler standards [CODE=c]#include<stdio.h> main() { int *ptr=10,j; j=ptr+19; printf("ptr=%d\n",ptr); printf("j=%d\n",j); } [/CODE] [CODE=text]output: ptr=10 j=86[/CODE] when ptr value is 10 in statement "j=ptr+19", why the j value is 86??

Member Avatar for gerard4143
0
117