i have to apply for rbi before that i need to know the the
syllabus for the entrance questions. whethet it may be aps
or techinical
No Answer is Posted For this Question
Be the First to Post Answer
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
Can we declare a function inside a function in c?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
Which is the best website to learn c programming?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
What is the difference between malloc() and calloc()?
explain about storage of union elements.
what type of language is C?
write a program in c to read array check element is present or not?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
what is dangling pointer?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is