What are the types of i/o functions?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different types of control structures?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
what is the difference between call by value and call by reference?
5 Answers Genpact, Global Logic, Infosys,
enum DAY { sunday, monday, tuesday }; enum EDAYS { friday, saturday, sunday }; void main() { int i =0; if( i == sunday) { printf("%d",i); } } what would be the output?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Explain 'far' and 'near' pointers in c.
How would you print out the data in a binary tree, level by level, starting at the top?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
5 Answers Vector, Vector Solutions,
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
What is getch() function?
Explain what will the preprocessor do for a program?