What is volatile keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can you determine the maximum value that a numeric variable can hold?
char *p="name"; printf(p);
Explain how can I remove the trailing spaces from a string?
What is difference between %d and %i in c?
a direct address that identifies a location by means of its displacement from a base address or segment a) absolute address b) relative address c) relative mode d) absolute mode
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What does c mean in basketball?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
why do we use # in c-language?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
What is the meaning of ?