Write a C program to fill a rectangle using window scrolling
Answer / venki
I DON'T KNOW. IF U KNOW TELL THE ANSWER
PLEASEEEEEEE............
Is This Answer Correct ? | 2 Yes | 4 No |
What are function pointers? Provide an example.
Why we use void main in c?
What is the function of ceil(X) defined in math.h do? A)It returns the value rounded down to the next lower integer B)it returns the value rounded up to the next higher integer C)the Next Higher Value D)the next lower value
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
what is the difference between NULL('\0') and 0?
Can a variable be both static and volatile in c?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
Define Spanning-Tree Protocol (STP)
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
Explain spaghetti programming?