What is masking?
No Answer is Posted For this Question
Be the First to Post Answer
What is #include stdlib h?
What is floating point constants?
inline function is there in c language?
Differentiate b/w Modify and Update commands giving example.
What are the concepts introduced in OOPs?
What are the 4 types of functions?
to get a line of text and count the number of vowels in it
program in c to print 1 to 100 without using loop
what is the difference between declaration and definition of a variable or function ?
What is a header file?
#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?
What is sorting in c plus plus?