how can make variable not in registers
Answer / sandeep
By adding volatile qualifier
eg:volatile int a;
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain how can a program be made to print the line number where an error occurs?
what is use of loop?
What is size of union in c?
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
what is the purpose of the code, and is there any problem with the code? int f( int n, int l, int r ) { return (n << l) >> r; }
how to find binary of number?
When do we get logical errors?
What is the scope of static variables in c language?
What is the difference between c and python?
what type of errors are checked during compilation
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
There are 21 people in a room. They have to form groups of 3 people each. How many combinations are possible? Write a C program to print the same.