What is a lookup table in c?
No Answer is Posted For this Question
Be the First to Post Answer
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Describe the header file and its usage in c programming?
What is scanf_s in c?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
c program to arrange digits in a no in ascending and descending order
How do I initialize a pointer to a function?
What are variables c?
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
Explain how can you determine the size of an allocated portion of memory?
what is pointer ? what is the use of pointer?
to find the closest pair