Does c have class?
No Answer is Posted For this Question
Be the First to Post Answer
int *a[5] refers to
What is a Genralised LInked List?? Please give a detailed explation of it..
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 meant by recursion?
What is hashing in c language?
What are the properties of union in c?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
What is the difference between NULL and NUL?
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 basic structure of c?
Why Modern OS are interrupt driven?Give an example