Why do we write return 0 in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do c compilers work?
Which type of language is c?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
WAP to accept first name,middle name & last name of a student display its initials?
How can you tell whether a program was compiled using c versus c++?
Explain what is the most efficient way to store flag values?
Is it possible to run using programming C for Java Application?
What is size of union in c?
What is a macro?
What are the keywords in c?
What are the advantages of using linked list for tree construction?