Write a c program to print the sizes and ranges of different
data types in c?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What is difference between && and & in c?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
how to do in place reversal of a linked list(singly or doubly)?
write a c program for print your name .but,your name may be small letter mean print a capital letter or your name may be capital letter mean print a small letter .example \\enter ur name : sankar The name is: SANKAR (or) enter your name:SAnkar The name is:saNKAR
What is the use of header?
in C-programming language without using printf statement can we get output r not ? if yes how and if no also how ?
What is the maximum length of an identifier?
how to build a exercise findig min number of e heap with list imlemented?
What is difference between structure and union in c programming?