Should I learn c before c++?
No Answer is Posted For this Question
Be the First to Post Answer
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
I heard that you have to include stdio.h before calling printf. Why?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
program to locate string with in a string with using strstr function
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?
hat is a pointer?
Can static variables be declared in a header file?
How many levels of pointers can you have?
HOW DO YOU HANDLE EXCEPTIONS IN C?
Is c object oriented?
Explain the difference between strcpy() and memcpy() function?
Explain how can I manipulate strings of multibyte characters?