Answer Posted / chandra sekhar kommuri
void main()
{
clrscr();
int a;
printf("adress of a ::%u",&a);
while(!kbhit());
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a function in c?
What is meant by operator precedence?
What are valid signatures for the Main function?
Differentiate between full, complete & perfect binary trees.
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is pass by value in c?
How to create struct variables?
What is sizeof array in c?
How to compare array with pointer in c?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Explain how can I pad a string to a known length?
What are pragmas and what are they good for?
Compare interpreters and compilers.
.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 is string function c?