Give the rules for variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we need functions in c?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
what is difference between #include<stdio.h> and #include"stdio.h"
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
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; }
What is the difference between array and pointer?
What does typedef struct mean?
write function to reverse char array ... without using second array
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
code for find determinent of amatrix
how to copy a string without using c function
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none