- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 12
- Posts with Upvotes
- 8
- Upvoting Members
- 6
- Downvotes Received
- 13
- Posts with Downvotes
- 8
- Downvoting Members
- 8
30 Posted Topics
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 … | |
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 | |
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 | |
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 | |
Re: Instead of reading character by character use "fread" to read more than 1 character from file at a time. And then use "fwrite" to write them to the output file. You can also use "fgets" to read a file line by line. Because "fgets" terminates reading on "\n" (new line … | |
Re: what you have done so far? come up with an effort then we will help you in solving your problems | |
Re: working now. check it. there were 3 errrors mentioned in comments in code [CODE] #include<stdio.h> void astrcat(char s[], char t[]); //to concatenate two string int main() { int i=0,p=0,q=0,c; char s[100],t[100]; while((c=getchar())!='\n') { s[p++]=c; } s[p] = '\0'; // error 1 put null after taking input while((c=getchar())!='\n') { t[q++]=c; } … | |
Re: Shellexecute is a commad which can help u to do so. have a look at [url]http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx[/url] might b helpful for you | |
Re: [QUOTE=markfisher;1110426]Thanks for the reply gerard4143: It's not a school project or assignment. All I'm trying to do is to create my own data structure library which it must be generic. I will use that library for my other projects (Again not a school one :-)) nezachem: Thanks for your reply. … | |
Re: store user name and password in a text file in this format username password to creat a new file follow [url]http://www.cplusplus.com/reference/clibrary/cstdio/fopen/[/url] to read from a file follow [url]http://www.cplusplus.com/reference/clibrary/cstdio/fscanf/[/url] when u read using fscanf it will read untill space character. means it will read only username compare the user name using … | |
Re: i think u should make a format of your DOC file like level = 5 cash = 100 now read 1 line from the file (Reference for reading from file is [url]http://www.cplusplus.com/reference/clibrary/cstdio/fread/[/url]) and then search for "=" character (use strchr function for string searching) and then pick level value. then … | |
Re: working now. You dont need to mention the return type while calling a function. Main is also a function. you have to mention its return type "void" or "int". [CODE]#include<stdio.h> void reverse(char s[], int i); int main() { int i,c; char s[1000]; for(i=0;(c=getchar())!='\n';i++) { s[i]=c; c=getchar(); } reverse(s,i); //getting error … | |
Re: [QUOTE=sehsa6;1110087]The first link u posted is not opening. Plzz check it once Cjesus Thank neways.[/QUOTE] this might b helpful. have a look at [url]http://www.codeproject.com/KB/IP/HTTPFilter.aspx[/url] source code is also available on this link | |
Re: yes. justice igwe is right. you should b very clear about your question. i m also not getting that what is the problem u r facing? | |
Re: working now [CODE]#include <iostream> #include <cmath> using namespace std; int main() { //Declare and initalize variables int i; double result; cin >> i; result = pow ((double)2,(double)i); cout << result << endl; return 0; }[/CODE] | |
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. | |
hi all. from where i can download this header file ncurses.h for windows? thnx in advance | |
Re: Well i can provide u a basic code for 1 client and 1 server. now its up to u that u hav to make it multi threaded for multiple clients wait for the code | |
Re: [QUOTE=pecet;1107811]use [ICODE]getline()[/ICODE] and [ICODE]istringstream[/ICODE] and your problem should be solved.[/QUOTE] look as far as u have a problem of counting words in your phrase then a solution to your problem is "just count the number spaces in your phrase and add 1 in it". for example in phrase "I Love … | |
Re: [QUOTE=Reborn121;1108057]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 … | |
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 | |
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 | |
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 … | |
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 … | |
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 … | |
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 … | |
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 | |
Re: ok i have the code. but i shall send it to u tomorrow. bcz i dnt have it rite now. its on my desktop pc. and i m on laptop now. push the parent node into a stack before going to a child. after returning back just pop the parent. … | |
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 | |
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 |
The End.