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
what is meant by flushll() in c programming?
what is the differance between pass by reference and pass by value.
How many types of sorting are there in c?
Function shall sum members of given one-dimensional array. However, it should sum only members whose number of ones in the binary representation is higher than defined threshold (e.g. if the threshold is 4, number 255 will be counted and 15 will not) - The array length is arbitrary - output the results to the stdout
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
If fflush wont work, what can I use to flush input?
What is else if ladder?
code for quick sort?
What is the benefit of using const for declaring constants?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?