The file stdio.h, what does it contain?
No Answer is Posted For this Question
Be the First to Post Answer
What is getch?
what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1
what is the use of using linked list and array?
How can you tell whether a program was compiled using c versus c++?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
How to set a variable in the environment list?
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
What is #line?
how can i get this by using for loop? * ** * **** * ******
Is c language still used?
Explain demand paging.