There is a mobile keypad with numbers 0-9 and alphabets on
it. take input of 7 keys and then form a
word from the alphabets present on those keys.
No Answer is Posted For this Question
Be the First to Post Answer
Describe the order of precedence with regards to operators in C.
What is the difference between NULL and NUL?
What is auto keyword in c?
what is difference between #include<stdio.h> and #include"stdio.h"
Is c++ based on c?
for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable
Do string constants represent numerical values?
What is the difference between void main and main in c?
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
Explain what is the general form of a c program?