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 8437main() { int i = 1; int num[] = {1,2,3,4}; num[i] = i++; printf("%d", num[i]); } what will be the output? }
22 33754#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 47813fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }
17 21966#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 11033Post New NDS C Interview Questions
Define the necessity of run stats among the environment test?
What is singleton activation mode in .net?
Which keyword is used to declare a variable in the vbscript language?
What are common buzzwords currently used in the rpa world?
What are the different types of hana information views? : hana bi development
Is it safe to cancel chkdsk?
Why frame of the motor is specified?. If we mention KW and voltage level,automatically frame is decided or separately frame is compulsory to mention?.
What do you mean by ttu in teradata?
How do I sum specific cells in excel?
How to submit form without a submit button.
How can you execute a free-form SQL query in Sqoop to import the rows in a sequential manner?
How can one customize slide layouts?
Explain how you estimate your project / task end dates and then monitor them to ensure that dead lines are met ?
What are the problems in CIBIL updation? How will you convince your angry customer whose name is default list even after repayment of complete loan?
Explain which of the following operators is incorrect and why? ( >=, <=, <>, ==)