Explain do array subscripts always start with zero?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
how to write a c program to print list of fruits in alpabetical order?
What is sizeof c?
What are the types of data files?
2. What does static variable mean?
program to print upper & lower triangle of a matrix
What is diffrance between declaration and defination of a variable or function
How to print %d in output
How do we print only part of a string in c?
What is union and structure?