How do you convert strings to numbers in C?
No Answer is Posted For this Question
Be the First to Post Answer
What is the description for syntax errors?
What is your stream meaning?
What is sorting in c plus plus?
If the static variable is declared as global, will it be same as extern?
how do we remove the printed character in printf statement and write next it it
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
SIR PLS TELL ME THE CODE IN C LANGUAGE TO PRINT THE FOLLOWING SERIES 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1 1 2 3 2 1 1 2 1 1
What are nested functions in c?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
explain what is fifo?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)