Answer Posted / vijay kumar tiwari
#include<iostream.h>
main()
{
cout<<"hello";
}
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is scope of variable in c?
Which is more efficient, a switch statement or an if else chain?
Difference between malloc() and calloc() function?
Explain how can I convert a string to a number?
Why is c not oop?
What is c value paradox explain?
In which language linux is written?
How can you access memory located at a certain address?
Explain how do you declare an array that will hold more than 64kb of data?
What is the benefit of using an enum rather than a #define constant?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
Do character constants represent numerical values?
Write a code on reverse string and its complexity.
What is the scope of an external variable in c?
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.