Explain can you assign a different address to an array tag?
No Answer is Posted For this Question
Be the First to Post Answer
write a program in c language that uses function to locate and return the smallest and largest integers in an array,number and their position in the array. it should also find and return the range of the numbers , that is , the difference between the largest number and the smallest.
What is the easiest sorting method to use?
What does node * mean?
Write a program to identify if a given binary tree is balanced or not.
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
What's the right way to use errno?
given post order,in order construct the corresponding binary tree
Write a program using two-dimensional array that lists the odd numbers and even numbers separately in a 12 input values.
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
i have a written test in tomorrow
#include<stdio.h> #include<conio.h> void main() {clrscr(); char another='y'; int num; for(;another=='y';) { printf("Enter a number"); scanf("%d",&num); printf("squre of %d is %d",num,num*num); printf("\nwant to enter another number y/n"); scanf("%c",&another); } getch(); } the above code runs only one time.on entering 'y' the screen disappeares.what can i do?
Why shouldn’t I start variable names with underscores?