Explain the use of keyword 'register' with respect to variables.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between declaration ,defenetion and initialization of a variable?
Why do we use return in c?
how to TOGGLE Nth bit of variable in a MACRO
What is a void pointer in c?
How to print all the 26 alphabets in this order in C. AbCdEfGh..... it should print dynamically from a to z and do not print this using pgm like this print("Ab......"); Use loops or anything to print all alphabets
to find the closest pair
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
how can i get this by using for loop? * ** * **** * ******
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
What will the preprocessor do for a program?
What is the difference between text files and binary files?
Explain the bubble sort algorithm.