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 one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
Distinguish between actual and formal arguments.
Write a c program to read a positive number and display it in words.? ex: 123=one two three help me....
Can we add pointers together?
How can we allocate array or structure bigger than 64kb?
Why is not a pointer null after calling free?
How to reverse a string using a recursive function, with swapping?
hat is a pointer?
what is void pointer?
what is the difference between embedded c and turbo c ?
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?