Write a program to print all permutations of a given string.
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between the = symbol and == symbol?
the operator for exponencation is a.** b.^ c.% d.not available
while initialization of array why we use a[][2] why not a[2][]...?
how to swap 2 numbers in a single statement?
Code for calculating square root without using library function, of math.h
What is the difference between exit() and _exit() function?
What is structure packing in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Why c is known as a mother language?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
What is c language in simple words?
how to implement stack work as a queue?