Hi pals What will be the output of the following program ? #include<stdio.h> #include<stdlib.h> int main() { int *a=(int *)malloc(sizeof(NULL)); *a=567 /* or...
Hi pals What will be the output of the following program ? #include<stdio.h> int main() { int a[0]={7}; printf("%d",a[0]); return 0; } (a) Compile-Time Error ...
Hi all, It will be 567 (or any other value that has been specified in the code),since NULL represents an Integer and hence will show 567. But a good one coz we...
Hi, The size of NULL is 2 since in its def in the lib it is given #define NULL 0 Regards, Kanwal ... [Non-text portions of this message have been removed]...
kanwal bhagat
kanwal_bhagat1982@...
Sep 1, 2004 9:32 am
1895
NULL by definition is a macro which replaces ( void * ) 0 So the string which will be placed in the sizeof operator is the definition of NULL macro. As...
I want to execute some commands in loadCDR.sh , I don't how to perform it . plz help me... 1) at now + 15 min < loadCDR.sh 2) at -f loadCDR.sh now + 15...
Hi when u compile it give warning. and give garbage value. so , c is the answer. bye Rakesh ... __________________________________ Do you Yahoo!? Yahoo! Mail...
rakesh mishra
rakes_4u2003@...
Sep 1, 2004 1:35 pm
1898
Hi krishnan, For "at" command to work you need to have cron services running on the server and also the user need to have permissions to use cron services...
Vadivel.Raja@...
Sep 1, 2004 1:39 pm
1899
Hi In this (e) is the option . If i m wrong then pls. correct me. (But why ? ) . Bye Rakesh ... __________________________________ Do you Yahoo!? New and...
rakesh mishra
rakes_4u2003@...
Sep 1, 2004 1:45 pm
1900
how to write add function in standard library how to write protype to a new header file for the same purpose Yahoo! India Matrimony: Find your life...
Hi Rakesh, I executed the program in turboc.It gave 7. Actually v declared array as int so it stores something. Even though the length of array is 0 it stores...
The ISO C90 standard does not allow the usage of zero-length arrays. "The expression delimited by [ and ] (which specifies the length of the array) shall be...
Hi Rakesh, In this eg output is.....2 10 10 2. y it is coming? is sizeof(*a).... it gives pointer size always pointer size 2. sizeof(a).. it stores 5...
thanks very much for replying........ but how do I come to know that cron services running on the server and how can I get permissions to use cron services. I...
Hi, This link should provide you with brief information on the cron services and also about the configuration issues. ...
Vadivel.Raja@...
Sep 1, 2004 2:33 pm
1906
Hi, These links should provide you with brief information on the cron services and also about the configuration issues. ...
Vadivel.Raja@...
Sep 1, 2004 2:41 pm
1907
Hi veda, Don't mind.....but you need to brush up ur C basics. Rajat ... __________________________________ Do you Yahoo!? Yahoo! Mail Address AutoComplete -...
File : C_Aptitude.doc Description : Know C Better...
c4swimmers@yahoogroup...
Sep 1, 2004 5:20 pm
1913
File : Exploring DataStructures with C.doc Description : Download the EXPLORING DATA STRUCTURES WITH C (1 - 13 Pages)...
c4swimmers@yahoogroup...
Sep 1, 2004 5:20 pm
1914
File : HowToBeAProgrammer.pdf Description : MUST READ - How To Be a Programmer / Team Person...
c4swimmers@yahoogroup...
Sep 1, 2004 5:20 pm
1915
File : IndustryCodingStandardCC++.pdf Description : Learn how to write C/C++ code according to the industry requirements (MISRA rules)...
c4swimmers@yahoogroup...
Sep 1, 2004 5:20 pm
1916
Pointers Varieties ************************************************************************************************* (1) int *p; // p is a pointer to an...