There is a number and when the last digit is moved to its
first position the resultant number will be 50% higher than
the original number.Find the number?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
C program to find all possible outcomes of a dice?
What is the use of the #include directive?
what is pointer?
we have a 3litres jug and a 5 litres jug and no measures on them. using these two jugs how can we measure 4 litres of water?
How is a null pointer different from a dangling pointer?
Given an array of characters which form a sentence of words, give an efficient algorithm to reverse the order of the words (not characters) in it?
How to avoid buffer overflow?
What is the general form of #line preprocessor?
What is the maximum length of an identifier?
What are the two types of structure?
Why the below program throughs error during compilation? #include<stdio.h> #include<conio.h> enum { ZERO, ONE, TWO, }; main() { printf("%d",&TWO); getch(); }