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 8539main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 34297#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 48255fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
17 22386#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 11207Post New NDS C Interview Questions
Define the execution model related to event pipeline?
How does inheritance work in c#?
How to start a keratinocyte culture?
Why does my outlook email say disconnected?
Garnet is the ore of which element?
what kind of technical test that i need to learn because i have an interview tomorrow.. please someone help me..
What are annotations in spring boot? : Spring Boot
What diffrence between flush distillation & batch distillation ?
What is a vaccine?
Name a accredited or govt approved university which have 100% online engineering course
What are some disadvantages of voip?
Explain why it is useful to use mvc instead of webforms? : asp.net mvc
In which scenario Hive is good fit?
previous question papers for group 2
What is the difference between method overriding and overloading?