What is the purpose of void pointer?
No Answer is Posted For this Question
Be the First to Post Answer
Output for following program using for loop only * * * * * * * * * * * * * * *
#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 identifier in c?
Write a code to generate divisors of an integer?
how to find anagram without using string functions using only loops in c programming
Explain the difference between the local variable and global variable in c?
In which area global, external variables are stored?
What is volatile variable in c?
what is pointer?
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
Difference between MAC vs. IP Addressing
What type of function is main ()?