write aprogram for
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.
What is the use of a semicolon (;) at the end of every program statement?
What is macro?
Can we declare variable anywhere in c?
What is the sizeof () a pointer?
what are two categories of clint-server application development ?
What are static functions?
Why does not c have an exponentiation operator?
Can we use visual studio for c?
what is the different between data structure and data type?
# define prod(a,b)=a*b main() { int x=2; int y=3; printf("%d",prod(x+2,y-10)); } the output of the program is a.8 b.6 c.7 d.none
How can you return multiple values from a function?
How to delete a node from linked list w/o using collectons?