What are the differences between Structures and Arrays?


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

Post New Answer

More C Interview Questions

Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

0 Answers  


How can I make sure that my program is the only one accessing a file?

0 Answers  


What is the difference between class and object in c?

0 Answers  


what are the general concepts of c and c++

2 Answers  


Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

0 Answers  






Why can’t constant values be used to define an array’s initial size?

0 Answers  


#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

2 Answers   Facebook,


What is static and volatile in c?

0 Answers  


write a program for 7*8 = 56 ? without using * multiply operator ? output = 56

6 Answers   Xavient,


how will you write a program on linked lists using JAVA programming???????????

1 Answers   Keane India Ltd,


How do you determine a file’s attributes?

0 Answers  


diff between exptected result and requirement?

0 Answers   HCL,


Categories