Since 5/7/2012 1:10:42 AM, mahesh1280 has written 4 articles and participated in 7 conversations. mahesh1280 signature: mahesh1280
mahesh1280's articles:
Items(4) /1
Is there stack associated when a executing an inline function?3134 (2/29/2008 7:37:44 AM) comp.lang.c Hi, I need to know if stack frames are generated in case of a inline function execution or do they execute just like macros? if they execute like macros, then what is the need for having inline fun... Mahesh
help needed on coversin of an char array to an integer4620 (2/21/2008 9:21:01 AM) comp.lang.c Hi, Im kinda stuck in a project at a point where i need an array to be converted to a integer using some kind of math. This board does not support functions like scanf, sscanf etc as it does not hav... MAx
Difference between a MACRO and a FUNCTION2119 (9/20/2007 7:04:05 AM) comp.lang.c Hi, Could any one list possible number of diferences between a function and a macro? which one will be faster and why?? ex : function and a macro ti find max of two nums #define MAX(a,b) (a>b) ? a:b and int m... MAx
Writing a file to /dev/lp0 in c++321 (9/14/2007 11:40:26 AM) comp.lang.c++ Hi guys, I am a c++ newbee and i am trying to write a file to a default printer. Please have a look at the code below and let me know if it'll work. I know that similar code in C will work. I was wondering ho... MAx
Difference between a MACRO and a FUNCTION2119 (9/20/2007 7:04:05 AM) comp.lang.c Hi, Could any one list possible number of diferences between a function and a macro? which one will be faster and why?? ex : function and a macro ti find max of two nums #define MAX(a,b) (a>b) ? a:b and int m... mahesh1280(11)
C how to program823 (10/11/2007 3:24:13 PM) comp.lang.c Hi all, I have been studying C language for one month, but all of are lessons and books are in Chinese in Beijing. I even cannot find C how to program by deitel in English in Beijing. Can anyone help me to gi... ntsetsbold(12)
help needed on coversin of an char array to an integer4620 (2/21/2008 9:21:01 AM) comp.lang.c Hi, Im kinda stuck in a project at a point where i need an array to be converted to a integer using some kind of math. This board does not support functions like scanf, sscanf etc as it does not hav... mahesh1280(11)
even or odd2918 (3/19/2008 2:52:22 PM) comp.lang.c The program always shows that the input is odd. int main () { int n, d; printf ("Enter a Number: "); scanf ("%d", &n); d=1; if (d==n) { printf ("The number is odd\n");... melsayid(4)