Why do we use main function?
No Answer is Posted For this Question
Be the First to Post Answer
#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 c system32 taskhostw exe?
What is the explanation for modular programming?
what is the difference between strcpy() and memcpy() function?
What is 2c dna?
What is the difference between pure virtual function and virtual function?
what's the return value of malloc()
What are the back slash character constants or escape sequence charactersavailable in c?
errors in computer programmes are called
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
which type of question asked from c / c++ in interview.
How can you access memory located at a certain address?