int i =10
main()
{
int i =20,n;
for(n=0;n<=i;)
{
int i=10
i++;
}
printf("%d", i);

Answer Posted / guest

i=20

Is This Answer Correct ?    2 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

All technical questions

1505


What are header files and what are its uses in C programming?

625


Can the sizeof operator be used to tell the size of an array passed to a function?

610


There seem to be a few missing operators ..

612


what is a constant pointer in C

674






What do you mean by invalid pointer arithmetic?

636


Why do we use stdio h and conio h?

629


Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?

618


hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..

1462


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

622


application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above

599


Explain 'far' and 'near' pointers in c.

700


What is the size of structure pointer in c?

610


In c programming language, how many parameters can be passed to a function ?

626


What is the difference between printf and scanf in c?

745