Define VARIABLE?
What does the characters “r” and “w” mean when writing programs that will make use of files?
Write a program to generate prime factors of a given integer?
What are variables and it what way is it different from constants?
What is the difference between near, far and huge pointers?
int main() { int i=1; switch(i) { case '1': printf("hello"); break; case 1: printf("Hi"); break; case 49: printf("Good Morning"); break; } return 0; }
string reverse using recursion
What is the difference between null pointer and the void pointer?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
what are the stages of compilation
Explain bit masking in c?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
How are 16- and 32-bit numbers stored?