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
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Explain what is the difference between a free-standing and a hosted environment?
Explain logical errors? Compare with syntax errors.
What are directives in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Explain what is the difference between null and nul?
Why does everyone say not to use gets?
Write a program to show the change in position of a cursor using c
Why is c called a mid-level programming language?
Who is the founder of c language?
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is the most efficient way to store flag values?
How variables are declared in c?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?