Answer Posted / biswajit jana
c programming is representation of logical statement
according to some c language rule.
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Can we declare variable anywhere in c?
What is %d called in c?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What are the Advantages of using macro
How do you print only part of a string?
What are the differences between new and malloc in C?
What do you mean by recursion in c?
hi folks i m approching for h1 b interview on monday 8th of august at montreal and i m having little problem in my approval notice abt my bithdate my employer has made a mistake while applying it is 12th january and istead of that he had done 18 the of january do any body have any solution for that if yes how can i prove my visa officer abt my real birthdate it urgent please let me know guys thaks dipesh patel
Why can’t constant values be used to define an array’s initial size?
What is c mainly used for?
Why we use stdio h in c?
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What are the general description for loop statement and available loop types in c?