What is output redirection?
what is a static function
why effort estimation is important?
to find the program of matrix multiplication using arrays
what is diffrence between string and character array?
Explain what are multidimensional arrays?
How many types of functions are there in c?
What is the difference between malloc() and realloc()?
What are multibyte characters?
wt is d full form of c
wap to print "hello world" without using the main function.
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
why arithmetic operation can’t be performed on a void pointer?