what r the cpu registers r ther?
Answer / guest
what kind of a crap question is this. Do u understand any
bit of english grammar. Just correct you'r question first
and then expect for an answer..
| Is This Answer Correct ? | 0 Yes | 0 No |
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); }
How is a null pointer different from a dangling pointer?
HOW TO HANDLE EXCEPTIONS IN C
What is the difference between void main() and void main (void) give example programme?
If the size of int data type is two bytes, what is the range of signed int data type?
What are the various topologies? Which one is the most secure?
Explain Basic concepts of C language?
How we can set and clear bit in a byte using macro function?
Are comments included during the compilation stage and placed in the EXE file as well?
WAP to accept first name,middle name & last name of a student display its initials?
What is the difference between a structure and a union?
write a program that will print %d in the output screen??