How will you write a code for accessing the length of an array without assigning it to another variable?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What is the difference between constant pointer and constant variable?
WHO WROTE C LANGUAGE?
What is the advantage of c?
Why & is used in c?
write a program which the o/p should b in such a way that s triangle if I/p is 3,a Square/rectangle if I/P=4,a pentagon if I/P=5 and so on...forget about the I/P which is less than 3
What is a good way to implement complex numbers in c?
what is a stack
Explain how do you convert strings to numbers in c?
Is null valid for pointers to functions?
I have a varargs function which accepts a float parameter?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?