What is the scope of static variables?
whether itis a structured language?
What is the difference between char array and char pointer?
How does free() know explain how much memory to release?
Find Error if any in below code, Justify ur answer: struct xx { int a; struct yy { char c; struct xx* p; } struct yy* q; }
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What does void main return?
Which is better malloc or calloc?
union { char ch[10]; short s; }test; test.s = 0xabcd; main() { printf("%d",ch[10]); }
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
What is 2 d array in c?
What is the most efficient way to store flag values?
How can I sort more data than will fit in memory?