Where can I get a manual or a BIGNUM pakage? (bn.h)631 (11/6/2003 2:57:39 PM) Hi, I would like to learn to use the bn.h library, but haven't not been able to find any manuals, tutorials or examples for it. Do you know any? Thanks, ... sboonkrong(12)
const parameters533 (11/7/2003 3:15:12 AM) I came across certain code with lot of declarations like: int foo(const double bar,const int m); I do not see any point in making a non pointer parameter a const, or am I missing something? ... guilti_coder(12)
The difference between char a[6] and char *p=new char[6] ?2420 (11/3/2003 7:54:15 AM) Hi ,all I want to know the difference between char a[6] and char *p=new char[6] and the difference between the heap and the stack ,and if the char a[6] is corresponding to the stack in MEMORY,and char *p=new c... wwjmaomao(12)
Menu printed twice in calc prog529 (11/6/2003 10:24:43 PM) Hi I am writing a small calculator program using switch() for a menu. The menu is presented at first, selection read in via scanf(), and calculation is executed. At the end of the operation, the menu is pre... Andy_not(48)
Rallocating a struct * *228 (11/7/2003 2:50:35 PM) Hello..! I have this problem: Following shows allocation of my struct: /////////////////////////////////////////// FOO **foo;//this is my struct FOO **reallocfoo;//this is an extra pointer foo=(FOO **)malloc... doktorhj(8)
how to default prototype232 (11/7/2003 1:22:05 PM) Not sure if the description is correct. I want to do something like: char* x(int x=3); int main(void) { printf("something = '%s'\n",x()); } char* x(int x) { return (x==3)?"3":"1";} From my limited use of c+... bpatton2(3)
view memory524 (11/6/2003 1:02:36 AM) I'm trying to write a program that will take ROM and show the values. Is that address 0-255? Would this involve malloc or memcpy? How can you alter memory values if you do know how to find them? Bill ... Bill
How do I delete lines from a file using "ofstream" ?221 (11/6/2003 12:13:58 PM) Hi everybody, I am using the STL "ofstream" class. I open a file using "ofstream" in update at the end mode ("ate"), I can read and write my file correctly. => What I would like to do is deleting some lin... plaurent(1)
delete comments in .c file3934 (10/31/2003 1:40:50 AM) I want to delete all comments in .c file. Size of .c file is very big. Any good idea to do this? Please show me example code. ... sugarfreed(1)
variable argument list337 (11/6/2003 5:28:59 PM) I am trying to master the variable argument list! C99 tells me: 7.15.1.4 The va_start macro: 1 #include void va_start(va_list ap, parmN); 4 The parameter parmN is the identifier of the rightm... zoesaddress(4)