How can I read and write comma-delimited text?
No Answer is Posted For this Question
Be the First to Post Answer
extern static int i func() { i =10; i++; printf("%d \n",i); } main() { i =20; printf("%d \n",i); func(); printf("%d \n",i); }
what is disadvantage of pointer in C
what is the difference b/w compiler and debugger?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
Whether there can be main inside another main?If so how does it work?
1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output
Find greatest number out of 10 number without using loop.
Explain the ternary tree?
wat is the meaning of c?
main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
which is conditional construct a) if statement b) switch statement c) while/for d) goto