What do you mean by command line argument?
No Answer is Posted For this Question
Be the First to Post Answer
Explain b+ tree?
What are extern variables in c?
enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
What is pre-emptive data structure and explain it with example?
to get a line of text and count the number of vowels in it
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is the newline escape sequence?
What is a static function in c?
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;