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 does 2n 4c mean?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Why do we use static in c?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
write a program in C to swap two variables
WHAT IS PRE POSSESSORS?
program for validity of triangle from 3 side
Program to find the sum of digits of a given number until the sum becomes a single digit
What is include directive in c?
What is declaration and definition in c?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.