What does sizeof return c?
No Answer is Posted For this Question
Be the First to Post Answer
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
I have an array of 100 elements. Each element contains some text. i want to: append a star character to the end of every fifth element remove every second character from every tenth element, and… add a line feed (ascii 10) after the 30th character of every array element whose length is greater than 30 characters.
when user give a number it multiply with 9 without useing '+' and '*' oprator
What functions are used in dynamic memory allocation in c?
how to generate sparse matrix in c
How can you determine the maximum value that a numeric variable can hold?
How we can set and clear bit in a byte using macro function?
Are there namespaces in c?
What is this pointer in c plus plus?
What is #include stdlib h?
Give differences between - new and malloc() , delete and free() ?
which is faster execution: loops or recursion?