What is identifier in c?
No Answer is Posted For this Question
Be the First to Post Answer
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
Can we initialize extern variable in c?
Write a factorial program using C.
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
What is pointer & why it is used?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
What is the maximum length of an identifier?
what is the diference between pointer to the function and function to the pointer?
What are the uses of null pointers?
What is c system32 taskhostw exe?
What are the uses of pre-processor directives?
How can I read and write comma-delimited text?