What are the properties of union in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
Why is the code below functioning. According to me it MUST NOT.
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What is methods in c?
write a program to interchange the value between two variable without using loop
What is wild pointer in c?
How will you delete a node in DLL?
What is the purpose of 'register' keyword in c language?
What are different types of pointers?
#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?
Hi, main() { } Is a user defined function or Built in Functionn
Write a program to identify if a given binary tree is balanced or not.