write a progrmm in c language take user interface generate
table using for loop?
No Answer is Posted For this Question
Be the First to Post Answer
can anyone please tell me wat is backlogs... i was looking for the job openings where i read this.. eligibility criteria minimum 70% in degree without backlogs. is that arrear.. if so is it standing arrear or history of arrears... please help me...
11 Answers CTS, Indian Navy, L&T, Microsoft, SSB, TCE, TCS,
How to add two numbers with using function?
What are the key features in c programming language?
write a function that accepts an array A with n elements and array B with n-1 elements. Find the missing one in array B,with an optimized manner?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is volatile
What is the function of volatile in c language?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
int arr[] = {1,2,3,4} int *ptr=arr; *(arr+3) = *++ptr + *ptr++; Final contents of arr[]
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What is meant by high-order and low-order bytes?
How to avoid buffer overflow?