Tell me what is the purpose of 'register' keyword in c language?
No Answer is Posted For this Question
Be the First to Post Answer
who invented c
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is the difference between constant pointer and constant variable?
What does typeof return in c?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Does * p ++ increment p or what it points to?
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
What is the use of sizeof?
Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is the purpose of 'register' keyword in c language?
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......