Why c is called free form language?
No Answer is Posted For this Question
Be the First to Post Answer
WHAT IS ABSTRACT DATA TYPE
Write a program to find the smallest and largest element in a given array in c language
What is the difference between array and pointer in c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Explain what are preprocessor directives?
what is a c-language.what is do.
Can an array be an Ivalue?
Give a method to count the number of ones in a 32 bit number?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Why do we need arrays in c?
#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?