How can you read a directory in a C program?
No Answer is Posted For this Question
Be the First to Post Answer
What are the 4 data types?
Explain the difference between null pointer and void pointer.
in iso what are the common technological language?
how to get starting address of a running C program
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
What is main return c?
Is there any data type in c with variable size?
What is the use of volatile?
what is mean by Garbage collection ? Please answer me. Advance thanks.
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
consagous technology placement paper
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????