Explain Function Pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Explain how does flowchart help in writing a program?
#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?
Describe for loop and write a c program to sum the series X + x2/2! + x3 /3! + …….. up to fifteen terms.
What is the use of #define preprocessor in c?
What library is sizeof in c?
how to impliment 2 or more stacks in a single dimensional array ?
What are the 5 elements of structure?
When should the volatile modifier be used?
Explain #pragma in C.
write a program to count the no of repaeted words in a line?
Explain function?
What does the c preprocessor do?