for(;;)
printf("C language")
What is out put of above??
Answers were Sorted based on User's Feedback
Answer / himanshu rajput
it will go infinitely,produce c language infinite time.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / anilsn
compilation error, ; should be at the end of printf
| Is This Answer Correct ? | 1 Yes | 1 No |
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
what is meant by flushll() in c programming?
What is a example of a variable?
Write a simple program to find the size of different basic data types in C.
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
why array index always starts from zero??
What is a pointer in c plus plus?
WHOT IS CHAR?
What is a static function in c?
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..
where does malloc() function get the memory?