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 8404main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 33571#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 47686fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
17 21818#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 10986Post New NDS C Interview Questions
Why context switching is faster in threads?
How data locks are respected in oracle?
What are custom report types? : salesforce admin
What was your best day in the last 4 years? What was your worst?
In order to ensure constant pressure and constant flow rate of compressed air what should we put between the compressure and end user?
what is the difference between configuration and customisation in sap hcm
Is there a way to remove the last object from a list?
Why do you want to join Virtual Command Centre (Work Force Management)
What is consistency token in db2?
in a simple IDMT relay we use neutral point of ct for earth fault then what is the requirement of neutral ct and cbct?
Name the different types of waits in webdriver.
Where we have to use perl scripting in Testing approach and its importance
What is a ternary operator in c?
What is ptm full form?
How to download files from an external server with code in php?