Is calloc better than malloc?
No Answer is Posted For this Question
Be the First to Post Answer
What is malloc() function?
main() { int a[10]; printf("%d",*a+1-*a+3); }
What are the c keywords?
What is a volatile keyword in c?
what is difference between declaring the pointer as int and char in c language?
What is difference between constant pointer and constant variable?
we compile c program in 32 processor and 64 bit processor .exe file is created in both the processors. if we want to run .exe file in 64 bit processor which is created in 32 bit processor. is that .exe file is run or not if it is not run why?
What are the 4 types of organizational structures?
How can I manipulate strings of multibyte characters?
What is the value of 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.
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?