[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


Having a difficult time running this small piece of code. ...

<< Back to: comp.lang.c Answers to Frequently Asked Questions (FAQ List)

Question by briane
Submitted on 4/24/2004
Related FAQ: comp.lang.c Answers to Frequently Asked Questions (FAQ List)
Rating: Not yet rated Rate this question: Vote
Having a difficult time running this small piece of code.  Not sure what is going on.  Expect to print an int, a char, a string and another string.  First string prints but second hangs.  I realize this is a strange way to do this but I want to read character by cahracter.

#include <stdio.h>

void vGetString(char cBuff[], int iMax);
char str[3][41];
char char1;
int int1;
void main()
{

   printf("     enter int       : ");
   scanf("%d", &int1);
   printf("     char1           : ");
   while(getchar() != '\n');
   scanf("%c", &char1);
   printf("Char1 is[%c]: ", char1);
   printf("\n   title1          : ");
   vGetString(str[0], 40);
   printf("\n[%s] ", str[0]);
   printf("\n   title2          : ");
   vGetString(str[1], 40);
   printf("\n[%s] ", str[1]);
}

/****************************************************
void vGetString(char cBuff[], int iMax)
{
   char cTemp[256];
   int idx=0;
   while (getchar() != '\n');
   while ((cTemp[idx] = (char)getchar()) != '\n')
   {
      ++idx;
   }
   if (idx > iMax)
   {
     cTemp[iMax] = '\0';
   }
   else
   {
     cTemp[idx] = '\0';
   }
   strcpy(cBuff, cTemp);
}


Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: comp.lang.c Answers to Frequently Asked Questions (FAQ List)


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.