Explain two-dimensional array.
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between char array and char pointer?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
what is the use of #pragma pack, wer it is used?
What is difference between far and near pointers?
main() { int a = 65; printf(“%d %o %x”,a,a,a); } Output 65 101 41 Please explain me.How it is coming like that?
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Is it possible to run a c program without using main?If yes HOW??
What are volatile variables?
Difference between Shallow copy and Deep copy?
What are keywords in c with examples?
What is a structure and why it is used?
What is an example of structure?