What is typeof in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is foreign key in c language?
Why we use int main and void main?
Write a program to reverse a linked list in c.
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,
Dont ansi function prototypes render lint obsolete?
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
Explain what are its uses in c programming?
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..
What is a void * in c?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
What is getch() function?