What are lookup tables in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why do we write return 0 in c?
How are pointers declared in c?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
what is uses of .net
Explain the difference between the local variable and global variable in c?
what is the difference between NULL('\0') and 0?
what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
what is Structural oriented language? give some example of this language.....?
What is null in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
can we have joblib in a proc ?
multiple of 9 without useing +,* oprator