Can stdout be forced to print somewhere other than the screen?
No Answer is Posted For this Question
Be the First to Post Answer
How to add two numbers without using semicolon at runtime
how can we use static and extern?and where can we use this?
what is a NULL pointer?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
Explain why can’t constant values be used to define an array’s initial size?
Can a program have multiple main() functions?
what is ram?
how to devloped c lenguege?
What is wrong with this statement? Myname = 'robin';
What is undefined behavior?
What is volatile keyword in c?