main()
{
int x, arr[8]={11,22,33,44,55,66,77,88};
x=(arr+2)[3];
printf(ā%dā,x);
}
Answer Posted / mahesh
33
| Is This Answer Correct ? | 0 Yes | 9 No |
Post New Answer View All Answers
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What are local static variables? How can you use them?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Explain the use of 'auto' keyword in c programming?
How are structure passing and returning implemented?
What is an lvalue?
Differentiate between a for loop and a while loop? What are it uses?
What is malloc calloc and realloc in c?
Are global variables static in c?
Where register variables are stored in c?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is console in c language?
What is oops c?
What is the use of the function in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.