What is string function c?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What are the average number of comparisons required to sort 3 elements?
What is declaration and definition in c?
Difference between goto, long jmp() and setjmp()?
What is the difference between far and near ?
How can you pass an array to a function by value?
Why is void main used?
What is the size of array float a(10)?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
How can I get Single byte from 'int' type variable? Can we alter single bit or multiple bits in int type variable? if so, How?
char ch=10;printf("%d",ch);what is the output