How to delete a node from linked list w/o using collectons?
write a program to sort the elements in a given array in c language
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Why array starts with index 0
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Explain the use of 'auto' keyword in c programming?
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
Explain bitwise shift operators?
What is echo in c programming?
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
what is op? for(c=0;c=1000;c++) printf("%c",c);
Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.