Is c# a good language?
No Answer is Posted For this Question
Be the First to Post Answer
What are data structures in c and how to use them?
With the help of using classes, write a program to add two numbers.
Explain output of printf("Hello World"-'A'+'B'); ?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
what is diognisis?
Why is python slower than c?
how to swap 2 numbers within a single statement?
what are brk, sbrk?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
Please list all the unary and binary operators in C.
What is difference between arrays and pointers?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?