which type of question asked from c / c++ in interview.
Answer Posted / abhradeep chatterjee
conceptual questions which proves that the basic idea of
the candidate is clear.
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
What is a node in c?
How can you determine the maximum value that a numeric variable can hold?
What is difference between far and near pointers?
What is the advantage of an array over individual variables?
How can I get random integers in a certain range?
What is void main () in c?
There seem to be a few missing operators ..
Calculate 1*2*3*____*n using recursive function??
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Is it better to use a macro or a function?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
What is queue in c?
What is #define in c?
How to get string length of given string in c?
If fflush wont work, what can I use to flush input?