when user give a number it multiply with 9 without
useing '+' and '*' oprator
Answer Posted / tknowledge05
The above guest is me .. okk....
by the time i solved and executing i was logged out and when i posted the answer it considered guest.......
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can variables be declared anywhere in c?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
What are the c keywords?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
Why c is called top down?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
how to write optimum code to divide a 50 digit number with a 25 digit number??
Differentiate call by value and call by reference?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Who is the founder of c language?
How are 16- and 32-bit numbers stored?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Why C language is a procedural language?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
Explain the use of bit fieild.