What are the 4 types of programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What is c programming structure?
What are reserved words with a programming language?
how to estimate the disk access time? e.g. the time between read one byte and another byte in the disk.
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
How can I open files mentioned on the command line, and parse option flags?
Why functions are used in c?
Why do we need arrays in c?
1.Why do you call C is middle level language? 2.Why do you call C is userfriendly language.
What do you mean by dynamic memory allocation in c? What functions are used?
Hierarchy decides which operator a) is most important b) is used first c) is fastest d) operates on largest numbers
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the difference between void main() and int main()?