Feb 15, 2012 at 2:47pm Feb 15, 2012 at 2:47pm UTC
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
const char arr[]="ABCD";
fun(){
printf("SIze of arr %lu\n",sizeof((unsigned long)sizeof(arr)));
}
main(){
clrscr();
fun();
}
Feb 15, 2012 at 2:53pm Feb 15, 2012 at 2:53pm UTC
You have forgot the function return types.
void fun(){
int main(){
Last edited on Feb 15, 2012 at 2:53pm Feb 15, 2012 at 2:53pm UTC
Feb 15, 2012 at 3:10pm Feb 15, 2012 at 3:10pm UTC
You also need to call fun In main
Feb 15, 2012 at 6:03pm Feb 15, 2012 at 6:03pm UTC
just give me the output along with explanation
Feb 16, 2012 at 4:08pm Feb 16, 2012 at 4:08pm UTC
HELP ME Regarding this,thank you!!!
Feb 16, 2012 at 4:49pm Feb 16, 2012 at 4:49pm UTC
We're not going to do it for you. If you want the output, just fix your code and then run it so you can see it for yourself. You're almost there...