What are the characteristics of arrays in c?
No Answer is Posted For this Question
Be the First to Post Answer
Program to simulate second clock
can we print any string without using terminator?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Linked lists -- can you tell me how to check whether a linked list is circular?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
what is meant by c
explain what are pointers?
What does a function declared as pascal do differently?
How can I read a directory in a c program?
char ch="{'H','I',0};printf("%s",ch);what is output
How would you find a cycle in a linked list?
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