while running a program, i got the msg that press return key
to exit.what that mean in C as there are no such options as
far i know.
Answer / thiruapthi rao
generally return key is considered as enter key
| Is This Answer Correct ? | 0 Yes | 0 No |
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Can you apply link and association interchangeably?
What is a built-in function in C?
What is return in c programming?
What is the 'named constructor idiom'?
Program to find the absolute value of given integer using Conditional Operators
difference between loading and linking
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
int i=10; printf("%d %d %d", i, i=20, i);
What is use of bit field?
What is the full form of getch?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?