Why do we use main function?
No Answer is Posted For this Question
Be the First to Post Answer
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
Write a C program to fill a rectangle using window scrolling
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
What is the advantage of c?
What does sizeof int return?
Why isn't any of this standardized in c? Any real program has to do some of these things.
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
how can I convert a string to a number?
simple program of graphics and thier outpu display with a want what is out put of graohics in c language
Why flag is used in c?