Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
3 8270main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 32838#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 47235fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
17 21372#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
6 10788Post New NDS C Interview Questions
Is angular js in demand?
What is extracellular digestion?
What is the proper name for edta and what is it?
Explain what is ods (operation data source)?
What is the difference between a mechanical engineer & a Marine engneer?
What is Curd testing?
What is table array in vlookup?
What is ngmodel in angular?
What is form feed in python?
Is main a keyword in java?
How do I fix error code 0xc0000142 in windows 10?
How can you avoid callbacks?
What is orm mapping in hibernate?
What tags do you need to add within the asp:datagrid tags to bind columns manually? How?
What are the key features of HDFS?