Why header file is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are variables and it what way is it different from constants?
What are structural members?
what is the difference between postfix and prefix unary increment operators?
largest Of three Number using without if condition?
#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?
In C programming, what command or code can be used to determine if a number of odd or even?
What are advantages and disadvantages of recursive calling ?
12 Answers College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
Explain what is the difference between the expression '++a' and 'a++'?
Is using exit() the same as using return?
why arithmetic operation can’t be performed on a void pointer?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
why do we use # in c-language?