Un-Answered Questions { C }

write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

1563


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2206


What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25

1480


What is the difference between declaring a variable by constant keyword and #define ing that variable?

2679


Calculate 1*2*3*____*n using recursive function??

1503


how to execute a program using if else condition and the output should enter number and the number is odd only...

1640


Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

1509


how can use subset in c program and give more example

1487


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1312


All technical questions

1497


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

2234


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

1486


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

1579


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3128


The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this

2914