What is struct node in c?
No Answer is Posted For this Question
Be the First to Post Answer
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is getch?
Can a binary search tree be used as an index? If yes, how? Explain
What is the use of pragma in embedded c?
What are control structures? What are the different types?
what is a constant pointer in C
1.what are local and global variables? 2.what is the scope of static variables? 3.what is the difference between static and global variables? 4.what are volatile variables? 5.what is the use of 'auto' keyword? 6.how do we make a global variable accessible across files? Explain the extern keyword? 7.what is a function prototype? 8.what does keyword 'extern' mean in a function declaration?
What are identifiers c?
What is the use of volatile?
What are the two forms of #include directive?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
what are the 10 different models of writing an addition program in C language?