Which control loop is recommended if you have to execute set of statements for fixed number of times?
No Answer is Posted For this Question
Be the First to Post Answer
Can we change the value of constant variable in c?
Explain the difference between malloc() and calloc() function?
What is calloc malloc realloc in c?
what is difference between C and C++
Why is malloc used?
Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)
if a person is buying coconuts of Rs10,and then sell that coconuts of Rs9,with the loss of one rupee.After that the person became a millaniore.how?
HOW TO HANDLE EXCEPTIONS 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?
What are the uses of pre-processor directives?
Is both getch() and getchar() functions are similar? if it is similar means why these two functions are used for same usage? if it is not similar means what is the difference?
what are advantages of U D F?