What are global variables and explain how do you declare them?
No Answer is Posted For this Question
Be the First to Post Answer
why programming language C is still used in operating system's kernel??
I have one doubt. What does below statement mean? #define sizeof(operator) where operator can be int or float etc. Does this statement meaningful and where it can be used?
what is the difference between definition and declaration? give me some examples.
print pattern 1 1 33 33 555 555 77777777 555 555 33 33 1 1
main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?
in case any function return float value we must declare a) the function must be declared as 'float' in main() as well b) the function automatically returned float values c) function before declared 'float' keyword d) all the above
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
what is the c source code for the below output? 10 10 10 10 10 10 10 10 10 10 9 9 7 6 6 6 6 6 6 9 7 5 9 7 3 2 2 5 9 7 3 1 5 9 7 3 5 9 7 4 4 4 4 5 9 7 8 8 8 8 8 8 8 8 9
What is array in c with example?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
find the sum of two matrices and WAP for it.