What is variable initialization and why is it important?
No Answer is Posted For this Question
Be the First to Post Answer
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
hi, which software companys will take,if d candidate's % is jst 55%?
What are qualifiers and modifiers c?
What is an array? What the different types of arrays in c?
what is the difference between declaration and definition of a variable or function ?
void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What do you mean by scope of a variable in c?
What is the meaning When we write "#include" what is # and what does include does there???
difference between function & structure
How to reverse alternate words in a given line of string For Eg: my name is narasimha output : my eman is ahmisaran
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?