| Recent Answers from Kaustav Neogy |
 |
2008-05-05 about this code pls: Like this - #include<stdio.h> #include<conio.h> #define N 6 int main() { int x[] = {30, 12, 51, 17, 45, 62,}; int i ; int sum = 0; for(i=0; i<N;i++) { if(i%2==0)...
|
2004-09-29 follow up to string manipulation: Hi Katrina, the variable "inputstr" contains the original string without the "*" character. We are creating a new string variable "outputstr" to store the manipulated value of the variable "inputstr"...
|
2004-09-28 string manipulation: Hi Katrina, should be something like this - char inputstr[30], outputstr[60]; int len=0,i=0,j=0,k=0; printf("Enter a string: \n"); scanf("%s",&inputstr); len = strlen(inputstr); j=0; k=0...
|
| More Answers for "C" |