What is #include cctype?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to find out prime number using sieve case?
What happens if you free a pointer twice?
print the pattern 1 2 4 3 6 9 4 8 12 16 5 10 15 20 25 if n=5
Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
the statement while(i) puts the entire logic in loop. this loop is called a) indefinite loop b) definite loop c) loop syntax wrong d) none of the above
what are the compilation steps? ( i want inside the compiler )
Define circular linked list.
What is void main ()?
What does double pointer mean in c?
swapping of two numbers without using third variable using AND and OR operators
how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table