What is the scope of static variable in c?
What is #error and use of it?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
wap in c to accept n number display the highest and lowest value
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
Implement bit Array in C.
Write a program to find given number is even or odd without using any control statement.
Write a C program that will accept a hexadecimal number as input and then display a menu that will permit any of the following operations to be carried out: Display the hexadecimal equivalent of the one's complement. (b) Carry out a masking operation and then display the hexadecimal equivalent of the result. (c) Carry out a bit shifting operation and then display the hexadecimal equivalent of the result. (d) Exit. If the masking operation is selected, prompt the user lor the type of operation (bitwise and, bitwise exclusive or, or bitwise or) and then a (hexadecimal) value for the mask. If the bit shifting operation is selected. prompt the user for the type of shift (left or right), and then the number of bits. Test the program with several different (hexadecimal) input values of your own choice.
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
How to print "I Love My India" without using semi colon?
Why does this code crash?
If we give two names then this displays the connection between the two people. It is nothing but flames game
int i=0,j; j=++i + ++i ++i; printf(" %d",j);