Why does notstrcat(string, "!");Work?
Which command is more efficient? *(ptr+1) or ptr[1]
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
What is wrong in this statement? scanf(“%d”,whatnumber);
What is page thrashing?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Explain how to reverse singly link list.
How do you convert strings to numbers in C?
When c language was developed?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
Why c language?
What does return 1 means in c?
define switch statement?