Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~9K People Reached
Favorite Tags

25 Posted Topics

Member Avatar for Emmitt310

>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 …

Member Avatar for musawir
0
903
Member Avatar for letmec

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 …

Member Avatar for Fbody
0
399
Member Avatar for hemant_is_here

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 …

Member Avatar for jamma
0
797
Member Avatar for letmec

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. …

Member Avatar for vegaseat
0
172
Member Avatar for letmec

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,

0
71
Member Avatar for grii_19

# 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); }

Member Avatar for Aia
0
813
Member Avatar for letmec

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

Member Avatar for letmec
0
117
Member Avatar for potential

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:

Member Avatar for Dave Sinkula
0
2K
Member Avatar for letmec

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 …

Member Avatar for aparnesh
0
107
Member Avatar for letmec

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 …

Member Avatar for Salem
0
119
Member Avatar for galmca

[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 …

Member Avatar for Narue
-1
363
Member Avatar for letmec

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 …

Member Avatar for Asif_NSU
0
122
Member Avatar for letmec

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

0
62
Member Avatar for indianscorpion2

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.

Member Avatar for letmec
0
183
Member Avatar for edelstahl

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 …

Member Avatar for Dogtree
0
1K
Member Avatar for Ghost
Member Avatar for letmec

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 …

Member Avatar for Dave Sinkula
0
88
Member Avatar for kparnell

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).

Member Avatar for eagleeye
0
135
Member Avatar for star320

[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 …

Member Avatar for letmec
0
153
Member Avatar for letmec

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....

Member Avatar for Fasola
0
372
Member Avatar for letmec

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 …

Member Avatar for Tight_Coder_Ex
0
124
Member Avatar for letmec
Member Avatar for Narue
0
80
Member Avatar for letmec

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:

Member Avatar for dalaharp
0
606
Member Avatar for coolmel55

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 …

Member Avatar for letmec
0
129
Member Avatar for mohammad

[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, …

Member Avatar for Narue
0
148

The End.