Write a c program to accept two strings of odd lengths
1. take all odd characters from one string & even character from other a and concatenate  & produce a string
2. us only one loop & no of times loop will be executed must be determined by length of long string.

Answer Posted / megha

i am
requesting  if any one know about C language please post the program.

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Briefly describe your ideal job?

3351


I want to make my career in networking so how to going there? right now i have done a+ n+ ccna course from cms com institute but i m not certified with globle certification os what is my frist step ?, my finincial prob also with me plz sorry isubmit it

1499


how to find out the name of the users who are currently working starting with the same characters in unix os

1375


Write a function that responds to a click anywhere on the page by displaying an alert dialog. Display the event name if the user held Shift during the mouse click. Display the element name that triggered the event if the user held Ctrl during the mouse click.

1363


Are bridges more stable on concrete or on soil - why?

868






#include int fn(int v); main() { printf("%d\n",fn(7)); } int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; }

1601


explain various problem solving statagis

1567


i can access command prompt in my pc. when i type cmd in run,message comes-you are restricted.contact admin. why is it so? how can acces it by just logging in as a user and not as admin.?????

1541


What experience have you had in working with field forces?

1512


Hi, what is the meaning of DOCUMENTUM,how and what testers have to do with it?

5545


I have cleared SBT clerk exam and having interview on 29.I have completed my B.tech in IT.I would like to know the types of questions asked in the interview.

3186


pls send me the e-book for verbal and non verbal reasoning of R S aggarwall

1709


to acheve the IP 65 protection class does it is mandatory to apply silicon grease?

1430


explain overloaded constrator © constractor

1664


10. Write a program in ā€˜Cā€™ language that will perform the following operation on double link list. Each node of this list contains the address of previous as well as next node. The previous pointer of first node & next pointer of last node should contain null. 1. Creation of list with as many records as user want 2. Search a node in the list 3. Deletion at last position 4. Display 5. Exit Create separate functions for each operation. The create () will be used to create the list. It should accept no argument & return the address of the starting node. Search() will search a node in the list. It receives rollno as argument & return that node if found otherwise return null. The delete () function will delete the last node. It does not receive any argument & return structure type value at last position. The starting node of the double list must be declared as external pointer variable. Each element of double link list will contain the following information Roll No, Std Name, Course. Use do-while loop & switch case for generating the above menu. The format of the output should is given below: S.No. Roll No. Student Name Course 1 cse01 Anil Singh B.Tech

1465