what does static variable mean?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
What is the difference between int main and void main?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
Why c is known as a mother language?
how to find sum of digits in C?
void main() { char c; while(c=getchar()!='\n') printf("%d",c); } o/p=11 why?
A C E G H +B D F A I ------------ E F G H D
What is main function in c?
What are the c keywords?
What are the types of pointers in c?
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.