How can I access an I o board directly?
No Answer is Posted For this Question
Be the First to Post Answer
What are local static variables?
plz answer..... a program that reads non-negative integer and computes and prints its factorial
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
What is sizeof in c?
What does & mean in scanf?
What is the meaning of && in c?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
What is the purpose of scanf() and printf() functions?
how can we Declare a variable in c without defining it.
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
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; }
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }