mysi...
Thursday, 22 October 2015
Sunday, 4 October 2015
[ Read More ]
[ Read More ]
October
4
Write a C program to print all permutations of a given string
A permutation, also called an “arrangement number” or “order,” is a
rearrangement of the elements of an ordered list S into a one-to-one
correspondence with S itself. A string of length n has n! permutation.
Below are the permutations of string ABC.
ABC, ACB, BAC, BCA, CAB, CBA
Here is a solution using backtracking.
// C program to print all permutations with duplicates allowed
#include <stdio.h>
#include...
October
4
programe to find date and time of system
#include <time.h>
#include <stdio.h>
int main(void)
{
time_t mytime;
mytime = time(NULL);
printf(ctime(&mytime));
return 0;
}
The string that is returned will have the following format:
Www Mmm dd hh:mm:ss yyyy
Www = which day of the week.
Mmm = month in letters.
dd = the day of the month.
hh:mm:ss = the time in hour, minutes, seconds.
yyyy = the year.
Output example:
Tue Feb 26 09:01:47 2009...
Thursday, 1 October 2015
[ Read More ]
October
1
c programe to count no of set bit in an integer
#anki
#include<stdio.h>
void main(){ int i,count=0; printf("enter the value"); scanf("%d",&i); while(i) { if((i & 1)==1) count++; i=i>>1; }
printf("count =%d",count);
getch(); ...
Subscribe to:
Posts (Atom)