Do you have any idea how to compare array with pointer in c?
How can I write a function that takes a format string and a variable number of arguments?
Do you know null pointer?
1)what is the error in the following stmt where str is a char array and the stmt is supposed to traverse through the whole character string str? for(i=0;str[i];i++) a)There is no error. b)There shud be no ; after the stmt. c)The cond shud be str[i]!='\0' d)The cond shud be str[i]!=NULL e)i shud be initialized to 1
Find the O/p of the following 1) #include int main() { char c='1'; int j=atoi(c); }
1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What is c++ used for today?
define function
What is the difference between functions getch() and getche()?
Do pointers need to be initialized?
Why is c fast?
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
what is real time system?what is the differance between hard and soft real time systems