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 keyword with example?
What are types of functions?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
write a c program in such a way that if we enter the today date the output should be next day's date.
Do you know the difference between exit() and _exit() function in c?
Which is the memory area not included in C program? give the reason
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
How can I get back to the interactive keyboard if stdin is redirected?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What are variables and it what way is it different from constants?
Differentiate Source Codes from Object Codes
Why do we need a structure?
What is const volatile variable in c?
What are loops c?