Which is best linux os?
No Answer is Posted For this Question
Be the First to Post Answer
How can I remove the trailing spaces from a string?
write a c prog for removing duplicate character from an array and sorting remaining elements using a single array
A B C D E F G F E D C B A A B C D E F F E D C B A A B C D E E D C B A A B C D D C B A A B C C B A A B B A A A
Explain about block scope in c?
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Write a pro-gramme to determine whether the number is even or odd?
What is const and volatile in c?
Can you think of a logic behind the game minesweeper.
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
How do I read the arrow keys? What about function keys?
Explain the process of converting a Tree into a Binary Tree.