Can variables be declared anywhere in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
How can I write a function that takes a format string and a variable number of arguments?
How do you list files in a directory?
What is the difference between procedural and functional programming?
How can I implement sets or arrays of bits?
What is the scope of global variable in c?
Does c have class?
Can we assign integer value to char in c?
Why we use void main in c?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
What does char * * argv mean in c?