Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
47% Quality Score
Upvotes Received
12
Posts with Upvotes
8
Upvoting Members
6
Downvotes Received
13
Posts with Downvotes
8
Downvoting Members
8
3 Commented Posts
Member Avatar for adcodingmaster

Hi every one. i m sending mail in php and facing a problem the problem is when i add some text in the body like this <b>this text is bold</b> then this text is shown as it is in the mail i want to show this text bold The problem …

Member Avatar for adcodingmaster
0
155
Member Avatar for adcodingmaster

I always come to dani web whenever i have some difficulties. Thanks to all of you. I have a question regarding DLL's. A DLL file is to be written or we just write a CPP file and the compiler generates a DLL for this CPP? Please answer Thanks in advance

Member Avatar for adcodingmaster
0
166
Member Avatar for adcodingmaster

Hi every one. I want to ask that what in there inside the work flow layer in the n-tier architecture. I know that its an optional layer? But What differentiates this layer from the presentation layer? Can some one please provide me with an example. tanks in advance

0
60
Member Avatar for adcodingmaster

Hi all. Can you please give me some ideas for software engineering project. This is not my final year project. Just a project for this course. There will be no implementation of the project. It only involves Documentation. So please help me. Thanks in advance

Member Avatar for adcodingmaster
0
203
Member Avatar for adrawat

Hi, Im trying 2 write the contents of a input file to an output file in reverse order using file I/O in C. Is there a more efficient way 2 do it? [CODE] int main() { FILE *fp1,*fp2; char ch,arr[100]; int i=0; if( (fp1 = fopen("input.txt","r")) == NULL ) { …

Member Avatar for adrawat
0
374
Member Avatar for elton571

Can some one please help me in writing a program for the INSERT AND DELETE operation on a BST, the operation functions must be NON-RECURSIVE ??

Member Avatar for Narue
-1
57
Member Avatar for nathanurag

[CODE=c] #include<stdio.h> void astrcat(char s[], char t[]); //to concatenate two string main() { int i=0,p=0,q=0,c; char s[100],t[100]; while((c=getchar())!='\n') s[p++]=c; while((c=getchar())!='\n') t[q++]=c; astrcat(s,t); while(s[i]!='\0') printf("%c",s[i++]); return 0; } void astrcat(char s[],char t[]) { int i, j; i = j = 0; while (s[i] != '\0') /* find end of s */ …

Member Avatar for nathanurag
0
106
Member Avatar for Lukezzz

Hi, I have a task where I programatically will open 2 Explorer Windows in a minimized mode. I have searched and the code I have come up with looks correct to me but what happens is that these 2 browser windows do open in a Normal mode. That will be …

Member Avatar for Lukezzz
1
192
Member Avatar for markfisher

Hello everyone I have been working on generic C data structure (Doubly Linked List) and I have a question: ------ List.c ----- [code] struct node { void *data; struct node *next; struct node *prev; }; struct list { unsigned int length; struct node *head; struct node *tail; }; typedef struct …

Member Avatar for markfisher
0
158
Member Avatar for krishnampkkm

hiiii... I wanna create a small application .And by giving a user name and password only it allows the user to enter in to the application . Here I wanna store the user name a and pass word in a text file and I've to check it with the password …

Member Avatar for adcodingmaster
0
119
Member Avatar for Pilot Boy

Well hello! I'm having problem with reading data from notepad.. So here is what I'm trying to do. etc.. I have notepad file "Doc" and in it there are few things: Level= 5 Cash= 100 And what I want from my program to do is to read Level and Cash …

Member Avatar for Pilot Boy
0
390
Member Avatar for nathanurag

[CODE] #include<stdio.h> void reverse(char s[], int i); main() { int i,c; char s[1000]; for(i=0;(c=getchar())!='\n';i++) { s[i]=c; c=getchar(); } void reverse(s,i); [B] //getting error in this line[/B] return 0; } void reverse(char input[], int n) { int i; for(i=n;i>=0;--i) { printf("%c", input[i]); } } [/CODE] i am writing a program to …

Member Avatar for nathanurag
0
295
Member Avatar for sehsa6

Hey frenzz I wanna make a Web content filter as my project. I have been looking for some help from past one month. I want ur help in making my project. Please help me explaining about its implementation or provide me with some links If u can. Any kind of …

Member Avatar for sehsa6
0
235
Member Avatar for zakir123

i want programme in c++ a car stand 3hours in 2$ then another car stand 24hours in 10$

Member Avatar for adcodingmaster
0
128
Member Avatar for problemkid

Hi I am a beginner in C++ programming. I am required to use the power function for one of my programs and keep getting the error message. Below is my program [CODE] 1 #include <iostream> 2 #include <cmath> 3 using namespace std; 4 5 int main(){ 6 7 //Declare and …

Member Avatar for adcodingmaster
0
135
Member Avatar for adcodingmaster

My question is Y DLL? i know that it saves memory and many process can use 1 DLL file at a time blah blah blah...... but is there any task which can not b achieved without using DLL files?? Please reply in details.

Member Avatar for Ancient Dragon
-2
106
Member Avatar for adcodingmaster
Member Avatar for jonsca
1
120
Member Avatar for chaienbungbu

I'm a java developer. Recently, at university, I have been assigned a task about network programming with C++. The specification is about create a distributed application (with a server and many clients). If they allow to use RMI in Java or .NET Remoting with C#, it's easy for me, because …

Member Avatar for adcodingmaster
0
157
Member Avatar for anthony5557
Member Avatar for mrnutty
0
150
Member Avatar for Reborn121

Hi everyone...I am building a program to input students names(first and last) and also GPA. I have everything working but the sort by last name. Everything works fine, even the GPA sort but the last name sort will not. Please help. Below is the function in my program i am …

Member Avatar for hag++
0
135
Member Avatar for adcodingmaster

hi All i have a question. plz answer if u can. i must b very thankful to u question is Why use abstract classes at all? Why not just declare a class and then make sure you never instantiate any variables of that type? thnx in advance

Member Avatar for ~s.o.s~
0
90
Member Avatar for adcodingmaster

i m making chess in java swing and does not getting how to implement[B][I][U][COLOR="Red"] check & checkmate condition.[/COLOR][/U][/I][/B] any sugessions plz thnx in advance

Member Avatar for BestJewSinceJC
0
2K
Member Avatar for adcodingmaster

hi all [COLOR="Red"]i m making chess in java and have a problem. Plz if u can help me out.[/COLOR] [B][I][I][I][U]Problem is[/U][/I][/I][/I][/B] when i add a JPanel to a JFrame it sets the size of JPanel given by me in the code. but when i add another JPanel then it automatically …

Member Avatar for walid faraj ali
0
177
Member Avatar for adcodingmaster

if one thread stucks in "gets" command then it does not allow any other thread to printf any thiing. i have also tried scanf but the same result. what should i do. i want other threads to print on command line but they did not if one of the threads …

Member Avatar for Ancient Dragon
-1
143
Member Avatar for adcodingmaster

i m working on gtk but haviing a problem. i want to make a function which inputs a string and display it on a widget window and then if i call that function again by passing another string then that string should be shown forward to the previous string on …

-1
74
Member Avatar for adcodingmaster

i m making a messenger in linux. a command line application. here is a server and 2 clients.both the clients are connected to the server but not with each other. i want to connect those 2 clients with each other. i m the server. how can i do that? plz …

Member Avatar for dkalita
-1
92
Member Avatar for adcodingmaster

hi can any one tell me the difference in architecture of dual core and core-2-duo processor? which one is better? plz reply to both the questions. thnx

Member Avatar for caperjack
0
180
Member Avatar for Gaiety

Hello every one, I Request you to kindly provide me the description of Tree and its traversal meothds of using iterative. i tried for all recursive ones but this one i cant get. how to get back to the parents nodes when printing in inorder and post order methods. how …

Member Avatar for Tom Gunn
0
165
Member Avatar for adcodingmaster

Hi All i need[B][I][COLOR="Red"] free solution manual of theory of automata by martin (third edition)[/COLOR][/I][/B]. plz if some one can send me via mail or can tell me a link from which i can download free solution manual. plz do it if u can thnx in advance

Member Avatar for John A
0
99
Member Avatar for adcodingmaster

hi guys can any one tell me the difference in architecture of dual core and core-2-duo processor? which one is better? plz reply to both the questions. thnx

Member Avatar for Salem
0
351