Are the outer parentheses in return statements really optional?
No Answer is Posted For this Question
Be the First to Post Answer
What are the different pointer models in c?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What are data breakpoints?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Array is an lvalue or not?
void main() { //char ch; unsigned char ch; clrscr(); for(ch =0;ch<= 127; ch++) printf(" %c= %d \t ", ch, ch); } output?
Describe how arrays can be passed to a user defined function
Who invented b language?
Which is better between malloc and calloc?
what is the use of bitfields & where do we use them?
Is int a keyword in c?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6