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 |
how to display 2-D array elements in spiral
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?
Is c compiled or interpreted?
What are the different types of data structures in c?
Explain the term printf() and scanf() used in c language?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
What is the use of the restrict keyword?
How do you use a 'Local Block'?
what is the difference between auto and static keywords
1 Answers cDot, College School Exams Tests, TCS,
What is Heap?
c program to arrange digits in a no in ascending and descending order
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?