What is array of structure in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff
Explain Function Pointer?
If the static variable is declared as global, will it be same as extern?
How the C program can be compiled?
Can the sizeof operator be used to tell the size of an array passed to a function?
In c language can we compile a program without main() function?
What is difference between Structure and Unions?
What is default value of global variable in c?
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
What is the benefit of using const for declaring constants?
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
WRITE A C PROGRAM FOR PRINT "RHOMBUS" STRUCTURE . Example: Enter the numbers :3 * * * * * * * *