Sponsored Links

Interview Questions



INTERVIEW QUESTIONS C STRINGS IN C DETAILS

Question: If a string variable contain "i am a good boy" then how a c program will print "boy good a am i".?

Answer: The string reverse can be done by using the string reverse function.
That is the "strrev" function.

Category Strings in C Interview Questions & Answers - Exam Mode / Learning Mode
Rating (0.3) By 7564 users
Added on 1/14/2013
Views 69821
Rate it!

Question: If a string variable contain "i am a good boy" then how a c program will print "boy good a am i".?

Answer:

The string reverse can be done by using the string reverse function.
That is the "strrev" function.
Source: CoolInterview.com

Answered by: santosh kumar pandi | Date: 2/9/2008 | Contact santosh kumar pandi Contact santosh kumar pandi

void str_reve_word(char* str)
{
int length = strlen(str);
int i=0;
while(length>=0)
{
if(str[length]!=' ')
{
length--;
continue;
}
for(i=length+1;((str[i]!=' ')&&(str[i]!=' Source: CoolInterview.com

Answered by: sha | Date: 2/11/2008 | Contact sha Contact sha

#include <stdio.h>
#include <ctype.h>
#include <string.h>


int main(int argc, char *argv[])
{
char *mesg = " I am a good boy. ";
char *startPtr, *endPtr, *tmpPtr;
endPtr = startPtr = mesg+strlen(mesg)-1;
while(startPtr > mesg) {
if(isgraph(*startPtr)) {
startPtr--;
}
else
{
tmpPtr = startPtr+1;
while(tmpPtr <= endPtr)
{
putchar((int)*tmpPtr);
tmpPtr++;
}
putchar((int)*startPtr);
startPtr--;
endPtr = startPtr;
}
}
tmpPtr = startPtr;
while(tmpPtr <= endPtr)
{
putchar((int)*tmpPtr);
tmpPtr++;
}
return 0;
}
Source: CoolInterview.com

Answered by: Akhilesh Shirbhate | Date: 2/13/2008 | Contact Akhilesh Shirbhate Contact Akhilesh Shirbhate

void main()
{
int l[100],n;
char str[5][20];
printf("How many strings")
scanf("%d",&n);
//read the string//
for(i=0;i<n;i++)
{
printf("Enter the %d string",i+1);
fflush(stdin);
scanf("%s",str[i]);
}
//calculate the length of each string//
for(i=0;i<n;i++)
{
l[i]=strlen(str[i]);
}
for(i=n;i>=0;i--)
{
for(j=0;j<l[i];j++)
{
printf("%s",str[i][j]));

getch();
}
} Source: CoolInterview.com

Answered by: Udhaya banu.N | Date: 2/13/2008 | Contact Udhaya banu.N Contact Udhaya banu.N

#include<iostream>

using namespace std;


char * revCopy(const char* );


int main(){

char *abc = "i am a good boy";

cout<<"the retruned copy is "<<revCopy(abc);

}


char * revCopy(const char *str){


char * abc = new char[strlen(str) + 1];
int iAbc = 0;

//strcpy(abc,str);

for(int i=strlen(str) - 1;i >= -1;i--){

if(str[i] == ' ' || i == -1 ){

for(int j = i+1;j < strlen(str) && str[j] != ' ';j++){

abc[iAbc++] = str[j];
}

abc[iAbc++] = ' ';
}
}

abc[iAbc] = ' Source: CoolInterview.com

Answered by: Vaibhav | Date: 2/27/2008 | Contact Vaibhav Contact Vaibhav

This is nothing but the string reversal.

Declare a variable x as string .
use " strrev() "
function to get the result U like for any string .

Note: You have to declare
#include<string.h>
at the begining of the program. Source: CoolInterview.com

Answered by: kalavnagarjuna | Date: 3/21/2008 | Contact kalavnagarjuna Contact kalavnagarjuna

void main()
{
char ch[8][20];
printf("Enter a string:and $for end of the string ");
for (int i = 0; i < 8; i++)
{
scanf("%s", ch[i]);
if(ch[i][0] == '$')
break;
}

for (i--; i >= 0; i--)
printf("%s ", ch[i]);

} Source: CoolInterview.com

Answered by: Biplab | Date: 4/2/2008 | Contact Biplab Contact Biplab

#include <stdio.h>
#include <string.h>
int main()
{
char in_str[16] = "I am a good boy";
char out_str[16] = {0};
char current_letter = 0;
int str_len = 0;
int in_str_pos = 0;
int temp_in_str_pos = 0;
int out_str_pos = 0;
int letter_count = 0;

/* calculate the string len */
str_len = strlen(in_str);
in_str_pos = str_len-1;
out_str_pos = 0;

while (in_str_pos >= 0)
{
if(in_str[in_str_pos] != ' ') /* If the letter is not a space */
{
letter_count++;
in_str_pos--;
}
else /* If the letter is a space */
{
/* put the word in correct order to the output string */
temp_in_str_pos = in_str_pos+1;
while (letter_count)
{
out_str[out_str_pos] = in_str[temp_in_str_pos];
letter_count--;
out_str_pos++;
temp_in_str_pos++;
}
/* Add space to the output string */
out_str[out_str_pos] = ' ';
out_str_pos++;
in_str_pos--;
}
}
/* For last word - in this case "I" */
temp_in_str_pos = in_str_pos+1;
while (letter_count)
{
out_str[out_str_pos] = in_str[temp_in_str_pos];
letter_count--;
out_str_pos++;
temp_in_str_pos++;
}

/* put "end of string" to output string */
out_str[out_str_pos] = ' Source: CoolInterview.com

Answered by: Aneeb | Date: 4/28/2008 | Contact Aneeb Contact Aneeb

using strrev() function we can reversed that string
#include<stdio.h>
#include<string.h>
void main()
{
char a[20];
printf("
Enter the string:");
scanf("%s",&a);
strrev=strrev(a);
printf("
The reversed string is:%s,sttrrev);
}
Source: CoolInterview.com

Answered by: asha | Date: 5/7/2008 | Contact asha Contact asha

char res_str1[10][10];
char in_str[100];
char *tmp_str;
int len,i;

strcpy(in_str,"i am a good boy");
printf("Input string:- %s
", in_str);

tmp_str = strtok(in_str, " ");
i = 0;
while(tmp_str != NULL) {
strcpy(res_str1[i],tmp_str);
tmp_str = strtok(NULL, " ");
i++;
}

printf("Reversed String:- ");
i--;
while (i >= 0) {
printf("%s ", res_str1[i]);
i--;
} Source: CoolInterview.com

Answered by: Lakshmi | Date: 5/13/2008 | Contact Lakshmi Contact Lakshmi


If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
  • There should not be any Spelling Mistakes.
  • There should not be any Gramatical Errors.
  • Answers must not contain any bad words.
  • Answers should not be the repeat of same answer, already approved.
  • Answer should be complete in itself.
Name :*
Email Id :*
Answer :*
Verification Code Code Image - Please contact webmaster if you have problems seeing this image code Not readable? Load New Code
Process Verification Enter the above shown code: *
Inform me about updated answers to this question

Related Questions
View Answer
How do I use c-strings to write a c program that Removes multiple spaces between words in a paragraph?
View Answer
How to get string in files and print the string in the reverse order?
View Answer
How can I convert a number to a string?
View Answer
i need a code in c for strings and general, which are important and frequently asked in programming test especially for SUBEX.
View Answer
What is the difference between a string and an array?


View Answer
How can I convert a number to a string?


View Answer
Following declarations are different from one another
const char *const s;
char const *const s;



View Answer
Can we use string in switch statement?

View Answer
What is wrong with the following c program?
char *s1 = "hello";
char *s2 = "world";
char *s3 = strcat(s1, s2);

Please provide me explanations??

char *s2 = "world";
char *s - Strings in C Interview Questions & Answers"> View Answer
Write a program which accepts a filename as a command line argument and coverts all characters in the file to uppercase.



View Answer
How to type a string without using printf function?

View Answer
What is the difference between System.String and System.StringBuilder classes?
View Answer
What is the advantage of using System.Text.StringBuilder over System.String?
View Answer
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
View Answer
How can I convert a number to a string?
View Answer
How can I convert a string to a number?
View Answer
How do you print only part of a string?
View Answer
What is the difference between a string and an array?
View Answer

Please Note: We keep on updating better answers to this site. In case you are looking for Jobs, Pls Click Here Vyoms.com - Best Freshers & Experienced Jobs Website.

View All Strings in C Interview Questions & Answers - Exam Mode / Learning Mode



User Options
India News Network

Latest 20 Questions
Payment of time- barred debt is: (a) Valid (b) Void (c) Illegal (d) Voidable
Consideration is defined in the Indian Contract Act,1872 in: (a) Section 2(f) (b) Section 2(e) (c) Section 2(g) (d) Section 2(d)
Which of the following is not an exception to the rule, "No consideration, No contract": (a) Natural love and affection (b) Compensation for involuntary services (c) Completed gift (d) Agency
Consideration must move at the desire of: (a) The promisor (b) The promisee (c) The promisor or any other party (d) Both the promisor and the promisee
An offer which is open for acceptance over a period of time is: (a) Cross Offer (b) Counter Offer (c) Standing Offer (d) Implied Offer
Specific offer can be communicated to__________ (a) All the parties of contract (b) General public in universe (c) Specific person (d) None of the above
_________ amounts to rejection of the original offer. (a) Cross offer (b) Special offer (c) Standing offer (d) Counter offer
A advertises to sell his old car by advertising in a newspaper. This offer is caleed: (a) General Offer (b) Special Offer (c) Continuing Offer (d) None of the above
In case a counter offer is made, the original offer stands: (a) Rejected (b) Accepted automatically (c) Accepted subject to certain modifications and variations (d) None of the above
In case of unenforceable contract having some technical defect, parties (a) Can sue upon it (b) Cannot sue upon it (c) Should consider it to be illegal (d) None of the above
If entire specified goods is perished before entering into contract of sale, the contract is (a) Valid (b) Void (c) Voidable (d) Cancelled
______________ contracts are also caled contracts with executed consideration. (a) Unilateral (b) Completed (c) Bilateral (d) Executory
A offers B to supply books @ Rs 100 each but B accepts the same with condition of 10% discount. This is a case of (a) Counter Offer (b) Cross Offer (c) Specific Offer (d) General Offer
_____________ is a game of chance. (a) Conditional Contract (b) Contingent Contract (c) Wagering Contract (d) Quasi Contract
There is no binding contract in case of _______ as one's offer cannot be constructed as acceptance (a) Cross Offer (b) Standing Offer (c) Counter Offer (d) Special Offer
An offer is made with an intention to have negotiation from other party. This type of offer is: (a) Invitation to offer (b) Valid offer (c) Voidable (d) None of the above
When an offer is made to the world at large, it is ____________ offer. (a) Counter (b) Special (c) General (d) None of the above
Implied contract even if not in writing or express words is perfectly _______________ if all the conditions are satisfied:- (a) Void (b) Voidable (c) Valid (d) Illegal
A specific offer can be accepted by ___________. (a) Any person (b) Any friend to offeror (c) The person to whom it is made (d) Any friend of offeree
An agreement toput a fire on a person's car is a ______: (a) Legal (b) Voidable (c) Valid (d) Illegal



Fresher Jobs | Experienced Jobs | Government Jobs | Walkin Jobs | Company Profiles | Interview Questions | Placement Papers | Companies In India | Consultants In India | Colleges In India | Exams In India | Latest Results | Notifications In India | Call Centers In India | Training Institutes In India | Job Communities In India | Courses In India | Jobs by Keyskills | Jobs by Functional Areas

Testing Articles | Testing Books | Testing Certifications | Testing FAQs | Testing Downloads | Testing Interview Questions | Testing Jobs | Testing Training Institutes

Gate Articles | Gate Books | Gate Colleges | Gate Downloads | Gate Faqs | Gate Jobs | Gate News | Gate Sample Papers | Gate Training Institutes

MBA Articles | MBA Books | MBA Case Studies | MBA Business Schools | MBA Current Affairs | MBA Downloads | MBA Events | MBA Notifications | MBA FAQs | MBA Jobs
MBA Job Consultants | MBA News | MBA Results | MBA Courses | MBA Sample Papers | MBA Interview Questions | MBA Training Institutes

GRE Articles | GRE Books | GRE Colleges | GRE Downloads | GRE Events | GRE FAQs | GRE News | GRE Training Institutes | GRE Sample Papers

IAS Articles | IAS Books | IAS Current Affairs | IAS Downloads | IAS Events | IAS FAQs | IAS News | IAS Notifications | IAS UPSC Jobs | IAS Previous Question Papers
IAS Results | IAS Sample Papers | IAS Interview Questions | IAS Training Institutes | IAS Toppers Interview

SAP Articles | SAP Books | SAP Certifications | SAP Companies | SAP Study Materials | SAP Events | SAP FAQs | SAP Jobs | SAP Job Consultants
SAP Links | SAP News | SAP Sample Papers | SAP Interview Questions | SAP Training Institutes |




Copyright ©2003-2024 CoolInterview.com, All Rights Reserved.
Privacy Policy | Terms and Conditions