Answer Posted / arthy
main()
{
int n,i;
scanf("%d",&n);
int a[n];
}
| Is This Answer Correct ? | 4 Yes | 25 No |
Post New Answer View All Answers
Is anything faster than c?
What is getch() function?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
what are the different storage classes in c?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
How can a number be converted to a string?
Add Two Numbers Without Using the Addition Operator
What is the use of header files?
What is #define size in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
Can we assign integer value to char in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Explain the use of keyword 'register' with respect to variables.
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code