What are local static variables? How can you use them?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
two variables are added answer is stored on not for third variable how it is possible?
What is scanf_s in c?
How do you convert strings to numbers in C?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
With the help of using classes, write a program to add two numbers.
why Language C is plateform dependent
What is the g value paradox?
Reverse the bit order in a single macro. eg. i/p = 10010101 --> o/p = 10101001
how to add two numbers without using arithmetic operators?
main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("India\n"); } output?