What does sizeof function do?
study the code: #include<stdio.h> void main() { const int a=100; int *p; p=&a; (*p)++; printf("a=%dn(*p)=%dn",a,*p); } What is printed? A)100,101 B)100,100 C)101,101 D)None of the above
What is the difference between typedef and #define?
Why is #define used?
What is a char c?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
What is use of #include in c?
What is the significance of an algorithm to C programming?
How do you convert strings to numbers in C?
how to swap 2 numbers within a single statement?
what are the static variables
8 Answers HCL, iFlex, TCS, Wipro,
i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)