Write a program that will generate all the consecutive prime numbers between an range chosen by the user. Each prime number should be separated by a space and...
hey u want to create shared lib \or ur own lib independent of other libs.. regards Amitesh Singh ISM Dhanbad matifq <matifq@...> wrote: Hi How to make...
Hi, Whatever may be the processor, We'll set or reset any particular port pin by either writing either 1 or 0. similarly how to set a port pin to high...
Hi, Reply embedded... ... IIRC, some where in the IDE, you can specified the directory of the include file. I can't really remember how to get there, or...
You can add any statement to read input from stdin, like getc(), or issue a "pause" command in the system() function. However, I would advice not to do those,...
Class Wizard is replaced by "Properties Window" in VC++.NET. - Make sure the dialog source is the active document. - Press F4, or View -> Properties Window. -...
thx ! it is strange to see how slight modifications in my habits can perturb me... it will certainly be the same problem with the next version anyway ! ...
repplst
repplst@...
Nov 1, 2004 7:55 pm
40544
... You can't. ANSI C/C++ are oblivious of implementation-specific issues like stack space. A program could use the heap for all C/C++ cares. That said, ...
In a message dated 10/26/2004 3:10:01 AM US Eastern Standard Time, ... Have you tried sending a blank message to < mailto:c-prog-unsubscribe@yahoogroups.com>?...
... Hash: SHA1 On Tue, 26 Oct 2004 15:27:02 +0530 ... If he read the mail, he would see this at the bottom of new posts. Or posts < specified length by yahoo. ...
Doesn't VS.net (v7) have a "GUI grid window" to help design GUI interfaces for C++ windows apps? I can find one for C# and VB but not for C++ .... Is it not...
Jared Sowers
jsowers@...
Nov 1, 2004 11:28 pm
40548
... Hmm...well, given this is a pretty basic assignment, I'll hedge my bets that your teacher won't go beyond 32-bit integer limitations. This means only the...
Hi , Just out of the top of my head... I think there is options menu, where you would find Compiling, Linking and Directory settings. You can go to the...
hi! in case of c++ how about declaring a function inside a class and using the sizeof function for an object of that class?im new to programming so not sure . ...
in c++ if u define function inside class.. then u see class ABC { int i; int fun(); }; ABC a; then sizeof(a) in unix machine it will show 4. but in class if u...
Hi Sujeet, I was just wondering the order of the memory allocation in the stack. It would be in the following manner. ... ESP======>> | a | ... with a...
hey this order is followed for the arguments not for the local variables... e.g. int abc(int a,char b) { int c; char d; } here the stack overview is like that...
Hi Amitesh, I think it applies to local variables also. Please find the snippet of code below: #include <stdio.h> void abc(void); void main() { abc(); } void...
Don't forget about variable padding (alignement) and optimizations that completely remove the variable either in favour of a const or a register... Or about...
Hi chandan Let's remember that what I said that STACK IS GROWING DOWNWARDS TOWARD LOWER MEMMORY ADDRESS(or address is growing upwards)..... hence the addresses...
Hi, can somebody read over this and explain what i should put in my code to get the output that i need, thanks Batting Averages - Parallel Arrays Part 1 Write...
I have a binary file that i am scanning for certain values. How can i open up a file and search for a hex value throughout the file. Then when the prog finds...
hi to all .... I got prob making shared lib using assembly.... Let me make it clear............ addint.c int addint(int a,int b) { return (a+b);} $gcc -fPIC -c...
Hi Amitesh, I went through your thorough analysis. The thing we both have missed over here is the machine architecture. When I ran the test program which was...
Dear Group members, i dont know who can help me now.but its grate help to me. i strongly believe someone defintely help me by understand my situation friends i...
Make use O_TRUNC flag in the open system call. Regards, Satya Prakash Prasad. ... __________________________________ Do you Yahoo!? Check out the new Yahoo!...
Satya Prasad
satya_prakash_prasad@...
Nov 3, 2004 8:40 am
40565
Hi, I'm new to this group and new to C programming. I'm facing problem to convert VB code to C language. May I know how to convert TRIM(string, "test") in VB...