Do pointers need to be initialized?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate call by value and call by reference?
What is the -> in c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
What is strcpy() function?
What are the general description for loop statement and available loop types in c?
#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 the size of enum in bytes?
what is the output of below int n=10; (n++)++; printf("%d",n);
The differences between Windows XP and Windows Visa
In a header file whether functions are declared or defined?
What is union in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.