What are directives in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to display the frequency of each element in a given array in c language
Two's compliment of -5
How to write the code of the program to swap two numbers with in one statement?
How can I remove the trailing spaces from a string?
Can the sizeof operator be used to tell the size of an array passed to a function?
Write a Program to print this triangle: * ** * **** * ****** * ******** * ********** use two nested loops.
12 Answers MIT, TCS,
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What does c in a circle mean?
Why preprocessor should come before source code?
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.
Explain logical errors? Compare with syntax errors.
what does " calloc" do?