When should the volatile modifier be used?
No Answer is Posted For this Question
Be the First to Post Answer
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
What are data breakpoints?
#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?
Are enumerations really portable?
How would you sort a linked list?
pgm to find middle element of linklist(in efficent manner)
Explain the process of converting a Tree into a Binary Tree.
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
What is a program flowchart and explain how does it help in writing a program?
Explain spaghetti programming?
write an algorithm and a program to count the number of elements in a circularly singly linked list
Is it valid to address one element beyond the end of an array?