IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
Answer Posted / sathish
Yes... Sure...
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you search data in a data file using random access method?
What is the difference between volatile and const volatile?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What is the size of enum in c?
Which one would you prefer - a macro or a function?
What is wrong with this declaration?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is typedf?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What is the difference between āgā and āgā in C?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What are the preprocessor categories?
What are the types of c language?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
When would you use a pointer to a function?