What is the meaning of c in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What should malloc(0) do?
what are the 10 different models of writing an addition program in C language?
whats the use of header file in c?
How would you use the functions fseek(), freed(), fwrite() and ftell()?
0 Answers Aspire, Infogain, TISL,
What is pointer in c?
why TCS selected more student in the software field from all institution.
What is the need of structure in c?
When should I declare a function?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
why do some people write if(0 == x) instead of if(x == 0)?
#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?