No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
25 Posted Topics
Re: >Hello, my name is Jonathan and I am a beginner programmer in my first year of studies. I am using a Turbo C++ editor and I'm trying to set up graphics. The problem is I'm not sure how. Here's how i was taught to set up graphics: #include <graphics.h> int … | |
Hello to all of you I have been using Turbo C++ for last 6 mounths and do all my graphics very fine. But when i started using Vc++, graphics.h was not including there. Can any one of u tell me to how to start graphics programming in Vc++ using same … | |
Re: As you know that we can pass one value at a time through one argument of any function. What, if we want to pass more than one value through one argument of a function, here is place where pointers comes. pointers stores addresses, and we pass address to a function … | |
This is a program to calculate the n-th root of any number. This program uses the NEWTON_RAPTION_ITERATION method for calculation. The general formula to find the n-th root of any number is : *-------------------------------* * (((n-1)/n)*x0) + (1/n)*(N/d) * *-------------------------------* where n =1,2,3............ (n-th root). x0 is First approximate root. … | |
Hello All, I need help from any of you. I want my php to run with Tomcat on SUSE Linux. I had configure it on Windows, it's working fine. If someone can help me configurg Tomcat to work with Php on Linux. Thank you, | |
Re: # include<stdio.h> # include<conio.h> void main() { float square(float);//you missed float here as argument float a,b; printf("\nenter any number"); scanf("%f",&a); b=square(a); printf("\nSquare of %f is %f",a,b); } float square ( float x) { float y ; y=x*x; return(y); } | |
hello to you all. I need to now how we can write a simple c code which will run when ever we plug in the usb drive in the port. Simply how to load our program at boot time. Thanks | |
Re: Try to use 'fflush()' function with the argument 'stdout'. When ever you want to clear your screen, just add this fflush(stdout). But remmember that it will fflush all standard out-put. But you use this. :cheesy: | |
Hello, I am using VB6.0 and crystal report8.5. my problem is that my report is not behaving dynamically. Iam using MS-ACCESS database. Some of my may help you figure out. [CODE]Dim conn As ADODB.Connection 'CONNECTION TO BROKER QUERIES Dim rs As ADODB.Recordset 'HOLDS ALL DATA RETURNED FROM QUERY Dim crystal … | |
hi, :) I have just started doing programming for emmbedded devices. i'm using AVR atmeg16 microcontroller and Cygwin C/C++ 32-bit compiler. Can anyone of you tell me which processor is used in Nokia 3315. and where should i get the documentations. Please don't tell me to see GOOGLE, I tried … | |
Re: [QUOTE=galmca]this is a code for the binary search program in c language.now the program is not showing any error but when i run this program then the output is like: enter the total numbers:6 enter the array elements: 5 4 7 1 3 2 the sorted numbers are:1 2 3 … | |
Hello everybody, This one for those who like graphics programming with C. Can any one of you tell me how to make stand alone graphics exe through C. i have read a paragraph on this topic but its not happenning. It will very nice of you if you code simple … | |
Hello onces again to all of u I want to how can i get all the drives on a computer. It will very kind of u if u provide with a simple code.. Thanku | |
Re: I think most excllent part of C is that you can intract with hardware very easily. Also try making programs on Encryption and Decryption, data compression and my fav. graphics. | |
Re: For the timmer try writting TSR's. TSR's are program that always resides in the memory once executed. These are very small but tricky codes and are useful when we want them to run on some events. Try a site funducode.com and search for TSR's. If you write some TSR's on … | |
hello guys, I am making a browser for Dos (working in graphics mode) in c++. the problem is that i don't now how to get all the directories, file names in current drive (so that i can display their different icons). Kindly give me an example to get all the … | |
Re: try some programming on mouse handling and keyboard handling and definitly on graphics. Mouse handling is very easy but keyboard is in some way is difficult. First try to make your own controls like command-button, Menus and textbox(Very important and tricky). | |
Re: [QUOTE=harshchandra]So wats problem in it just swap the digits....that the encrypted one.....and then again swap it back to decrypt[/QUOTE] just convert the integer to strint using itoa() function, and then you can easly swape the digit-character. and then conver the this encrypted string back to integer using atoi() function. Visa-versa … | |
I'm working on TSR through C. i have writen dogens of them for dos, :rolleyes: but it works for dos only, can you tell me who to write TSR's for windows. Thankyou.... | |
I am working on a program for encryption & decryption using SDES Algo. This Algo. takes a key of 10-bit length and input plaintext of 8-bits length and produces a ciphertext of 8-bits length. I have collected the key in an array of char (char key[11]) and plaintext as unsigned … | |
How can intract ODBE with C++, Waiting for your kind responce.. | |
I love graphics programming through C & C++, I have worked a lot, but i am still very far away from bmp files, Can any one tell me how i can access bmp file through C, C++. Thanks in advance :rolleyes: | |
Re: Object is in simple a user-defined data-type. Methods are different properties of an object. for example: char String[30]='DFDFGDFG"; The above definition shows that 'String' is an object of pre-definied data-type char. And what about methods? Know if want to add two strings then will not use str3=str1+str2 directly, but you … | |
Re: [QUOTE=mohammad]i am new on file(c) if i copy fscanf(nom du file,"%d",&a); from where i want copy th value of a plz send for me a example use fscanf plzzzzzzzz realy i need help :cry: :cry:[/QUOTE] let me give you an example, Now if you have a file opened in textmode, … |
The End.