write a C program:There is a mobile keypad with numbers 0-9
and alphabets on it. Take input 0f 7 keys and then form a
word from the alphabets present on the keys.
Stimulate calculators to perform addition,subtraction,multiplication and division on two numbers using if/else statement?
34.what are bitwise shift operators? 35.what are bit fields? What is the use of bit fields in a structure declaration? 36.what is the size of an integer variable? 37.what are the files which are automatically opened when a c file is executed? 38.what is the little endian and big endian? 39.what is the use of fflush() function? 40.what is the difference between exit() and _exit() functions? 41.where does malloc() function get the memory? 42.what is the difference between malloc() and calloc() function? 43.what is the difference between postfix and prefix unary increment operators?
can we execute the program with the object file
How a string is stored in c?
Explain what is wrong with this program statement?
What is cohesion and coupling in c?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
What is the purpose of #pragma directives in C?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
What is difference between %d and %i in c?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.