Answer Posted / rajendra.p
An address that identifies the location of the most recent
item placed on the stack
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode
What is function pointer c?
Define and explain about ! Operator?
Explain what’s a signal? Explain what do I use signals for?
What is f'n in math?
What is header file definition?
What is the difference between printf and scanf )?
how to create duplicate link list using C???
What is a char in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What are pointers?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is difference between main and void main?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Why we use conio h in c?