Explain can you assign a different address to an array tag?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the use of a semicolon (;) at the end of every program statement?

1 Answers  


main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


What are pointers in C? Give an example where to illustrate their significance.

0 Answers   Wipro,


What is an endless loop?

0 Answers  


int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }

3 Answers  






What is define c?

0 Answers  


What does %d do in c?

0 Answers  


main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?

9 Answers   BTBP, CitiGroup,


What does stand for?

0 Answers  


What is the difference between fread buffer() and fwrite buffer()?

0 Answers  


What does c in a circle mean?

0 Answers  


can we access one file to one directory?

1 Answers  


Categories