What is the use of bit field?
No Answer is Posted For this Question
Be the First to Post Answer
how c source file in converted to exe file
Is null always equal to 0(zero)?
which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;
Why can’t constant values be used to define an array’s initial size?
What is pass by value in c?
What is meant by preprocessor in c?
How do I read the arrow keys? What about function keys?
What is volatile keyword in c?
All technical questions
LOGIC OF Bodmas?
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 does it mean when a pointer is used in an if statement?