what is difference between array and structure?
Answer Posted / tsering dolma
1. Array is collection of homogenous data and
structure is collection of hetogenous data
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
When we use void main and int main?
What does #pragma once mean?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Explain about the functions strcat() and strcmp()?
Why we use void main in c?
write a programming in c to find the sum of all elements in an array through function.
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is c preprocessor mean?
Define Spanning-Tree Protocol (STP)
What is fflush() function?
Why is struct padding needed?
What is c value paradox explain?
Write a program to print ASCII code for a given digit.