What is data types?
No Answer is Posted For this Question
Be the First to Post Answer
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
write an algorithm and c program to add two 2x2 matrics
Explain what a Binary Search Tree is.
what is the advantage of software development
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Software Interview Questions
What is data types?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
What is your favorite subject?
1 Answers Ericsson, Invendis, Tech Mahindra,
What are the different types of objects used in c?
What is the difference between text and binary i/o?