Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. manichandra

    two dimensional array, matrix

    can any body give me the idea to solve this problem, not the whole answer.thanks, Use a matrix represents an island surrounded by water. Two bridges lead out of the island. A mouse is placed on the black square. Write a program to make the mouse take a walk across the island. The mouse is...
  2. manichandra

    char to char array

    is there any possibility to convert a char to a char array example : here is char a ='163'; char data[16]; i want to input the value of 'a' to 'data' as data[0]='1' data[1]='6' data[2]='3' data[3]='\0'
  3. manichandra

    casting

    i want to pass two characters("6","8") into a function which will convert this two chars into integers and add these two integers(6+8=14) after that it will change the value (int 14) into char (char "14") and returns the char. can anybody help me please ??
  4. manichandra

    string copy function

    what is wrong with this code? its not working . can anybody explain in detail please ??? ____________________________ #include <stdio.h> #include<stdlib.h> #include<string.h> void newStrCpy(char* q, char* p); int main (void) { char *q = "MANICHANDRA"; char *p ...
  5. manichandra

    pointer strings

    output of this _____________________ int main() { char s[]="MANI"; char *p; p=s; *p = "CUCKOO"; //*(p+1)='C'; //*(p+2) = 'B'; //*(p+3) = 'D'; printf("%s\n",s); printf("%s\n",p); return 0; } ____________________________ is eANI eANI y can't...
  6. manichandra

    pointer and string

    why can't we do this ?? int main() { char *p="MANI";; *(p+1)='C'; *(p+2) = 'B'; *(p+3) = 'D'; printf("%s\n",p); return 0; } when we can do this .. int main() { char s[]="MANI"; char *p; p=s; *(p+1)='C'; *(p+2) = 'B'; *(p+3) = 'D'...
  7. manichandra

    small notes on pointers and strings

    int main() { char *p="MANI"; char *q; printf("%c %c %c %c\n",'M','A','N','I'); printf("%d %d %d %d\n",'M','A','N','I'); printf("%d %d %d %d %d %d %d\n", *p,*(p+1),*p+1,*(p+2),*p+2,*(p+3),*p+3); printf("%c %c %c %c %c %c %c\n"...

Part and Inventory Search

Back
Top