The difference between printf and fprintf is ?
why program counter is 16 bit?
What is the difference between int main and void main in c?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
Explain how can you determine the size of an allocated portion of memory?
where do we use volatile keyword?
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
What is 1d array in c?
What is LINKED LIST? How can you access the last element in a linked list?
What is the best style for code layout in c?
What is pointers in c with example?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
What is static and volatile in c?