Forum: C Feb 26th, 2009 |
| Replies: 4 Views: 1,695 thanks for the feedback.. i ve made the modification suggested. |
Forum: C Feb 26th, 2009 |
| Replies: 2 Views: 1,838 hi eswar.. thanks for your feedback..
do u want the screenshot of the console ? |
Forum: C Jan 22nd, 2009 |
| Replies: 4 Views: 1,695 i have changed the global variables and even used pointer for string processing....thanks ddanbe :) |
Forum: C Jan 22nd, 2009 |
| Replies: 4 Views: 1,695 #include <conio.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main_ctr,n;
int fn_print(char *a)
{ |
Forum: C Jan 19th, 2009 |
| Replies: 4 Views: 1,695 This program displays all possible permutations of the string entered.
say if u enter
"abc" as input string the possible permutations would be
displayed as
.........................
abc
acb... |
Forum: C Jan 19th, 2009 |
| Replies: 2 Views: 1,838 Login functionality in C-language :
Here the user enters the user id and password.
The entered user id and password will be compared with the stored ones and user will be authenticated.
... |
Forum: C Jan 19th, 2009 |
| Replies: 6 Views: 928 written by dileep basam ..
******************************************
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
main()
{
int i,counter=0,flag=0; |
Forum: C Jan 19th, 2009 |
| Replies: 13 Views: 12,442 sorry i am new to this site what are code tags exactly... ?? |
Forum: C Jan 19th, 2009 |
| Replies: 13 Views: 12,442 #include <conio.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
char a[50],st_char;
int i,j,k,n,st,ctr,main_ctr;
int fn_print()
{ |
Forum: C Jan 18th, 2009 |
| Replies: 3 Views: 6,686 #include <conio.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void main()
{
char a[20],st_char;
static int i,j,k,n,st,ctr,main_ctr;
printf("Enter the string : "); |
Forum: C Jan 18th, 2009 |
| Replies: 13 Views: 12,442 #include <conio.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void main()
{
char a[20],st_char;
static int i,j,k,n,st,ctr,main_ctr;
printf("Enter the string : "); |