What is the difference between new and malloc functions?
No Answer is Posted For this Question
Be the First to Post Answer
advantages of pointers?
main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
i have to apply for the rbi for the post of officers. i need to know abt the entrance questions whether it may be aps or techinical....
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
Do you know what is the purpose of 'extern' keyword in a function declaration?
Why c is a procedural language?
What is the scope of static variables?
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
What language is windows 1.0 written?
which one is better structure or union?(other than the space occupied )
What are the various types of control structures in programming?