what is the use of ‘auto’ keyword?
what is c language?
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
How do you define CONSTANT in C?
Why is c called a structured programming language?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
How to draw the flowchart for structure programs?
What is scanf () in c?
Where are c variables stored in memory?
Are local variables initialized to zero by default in c?