How we can insert comments in a c program?
No Answer is Posted For this Question
Be the First to Post Answer
Tell us something about keyword 'auto'.
#include<stdio.h> { printf("Hello"); } how compile time affects when we add additional header file <conio.h>.
what is calloc and malloc?
write a function which accept two numbers from main() and interchange them using pointers?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What does int main () mean?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Explain that why C is procedural?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } Find the output
What are .h files and what should I put in them?
What are the uses of null pointers?