void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answers were Sorted based on User's Feedback
Why static variable is used in c?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
write a c program that prints all multiples of 3between 1 and 50.
Q. where is the below variables stored ? - volatile, static, register
Describe dynamic data structure in c programming language?
How do you initialize pointer variables?
i want to job in your company, so how it will be possible.
Is using exit() the same as using return?
Where are some collections of useful code fragments and examples?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
can we implement multi-threads in c.