What is f'n in math?
No Answer is Posted For this Question
Be the First to Post Answer
Is sizeof a keyword in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
How do I send escape sequences to control a terminal or other device?
How can I copy just a portion of a string?
What will the preprocessor do for a program?
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.
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
What is memcpy() function?
What is the purpose of main() function?
What is structure and union in c?
What is nested structure in c?
What's wrong with "char *p = malloc(10);" ?