How can you convert integers to binary or hexadecimal?
No Answer is Posted For this Question
Be the First to Post Answer
explain memory layout of a C program
how to impliment 2 or more stacks in a single dimensional array ?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
How is a null pointer different from a dangling pointer?
what is the different bitween abap and abap-hr?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
how will you write a program on linked lists using JAVA programming???????????
What are categories used for in c?
Is it possible to have a function as a parameter in another function?
What is extern storage class 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.
Which is better pointer or array?