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
What is a volatile keyword in c?
What is the use of ?
What are comments and how do you insert it in a C program?
What are nested functions in c?
How is = symbol different from == symbol in c programming?
What standard functions are available to manipulate strings?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
1. What will be the output of the following programs. a) #include <stdio.h> Main() { Int x=4; While(x==1) { X=x-1; Printf(ā%dā,x); --x; } }
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
Explain pointer. What are function pointers in C?
What is the general form of a C program?
what is a headerfile?and what will be a program without it explain nan example?