Do you have any idea about the use of "auto" keyword?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 4 types of organizational structures?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
What is function pointer and where we will use it
is it possible to change the default calling convention in c ?
how to swap four numbers without using fifth variable?
Where are c variables stored in memory?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
tell me the full form of c?
Is c easier than java?
Function to find the given number is a power of 2 or not?
whitch value return void main?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }