which type of question asked from c / c++ in interview.
Answers were Sorted based on User's Feedback
Answer / abhradeep chatterjee
conceptual questions which proves that the basic idea of
the candidate is clear.
| Is This Answer Correct ? | 12 Yes | 2 No |
write a program to convert a expression in polish notation (postfix) to inline (normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
What Is The Difference Between Null And Void Pointer?
How to add two numbers without using arithmetic operators?
18 Answers College School Exams Tests, e track, Infosys, Pan Parag, Sapient, TCS,
will u give me old quesrion papers for aptitude for L & t info tech?
What is the difference between ‘g’ and “g” in C?
What is unary operator?
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
What is the size of structure pointer in c?
What are compound statements?
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
What is typedf?