What is a const pointer?
No Answer is Posted For this Question
Be the First to Post Answer
How to write a program for swapping two strings without using 3rd variable and without using string functions.
write a prgram of swapping with 2 valiables
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
what does data structure mean?
main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } what is the output?
What is unary operator?
how to introdu5ce my self in serco
write a program to find a given no. is divisible by 3 or not without using any arthimetic operators?
Explain what is the use of a semicolon (;) at the end of every program statement?
What is a Deque?
if we take a number as a char then can we manipulate(add, subtract) on this number
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?