Explain what is the difference between functions abs() and fabs()?
No Answer is Posted For this Question
Be the First to Post Answer
how we can make 3d venturing graphics on outer interface
what is pointer
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
write an interactive program to generate the divisors of a given integer.
why the execution starts from main function
will u please send me the placement papers to my mail???????????????????
What is the scope of local variable in c?
sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
What is array in C
given the piece of code int a[50]; int *pa; pa=a; to access the 6th element of the array which of the following is incorrect? a.*(a+5) b.a[5] c.pa[5] d.*(*pa + 5)