Explain enumerated types in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What the advantages of using Unions?
please give me some tips for the selection in TCS.
How many types of operator or there in c?
What is scanf_s in c?
What is the meaning of this decleration? unsigned char (*pArray[10][10]); please reply.
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } what is the output?
7 Answers AMCAT, HCL, Ramco, Zycus Infotech,
What does stand for?
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
How to write a multi-statement macro?
how to generate the length of a string without using len funtion?
hi how to convert program from notepad to turboc editor can u please help me
#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?