Describe wild pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is Bitwise Operator and how it works?
How would you rename a function in C?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
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 default value of global variable in c?
How to avoid buffer overflow?
WHAT IS INT?
What is extern keyword in c?
What is a macro in c preprocessor?
write a c code "if you give a any decimal number then print that number in english alphabet"? ex: i/p: 552 o/p: five hundred fifty two ...
What is the most efficient way to store flag values?
Write a pro-gramme to determine whether the number is even or odd?