What do mean by network ?
No Answer is Posted For this Question
Be the First to Post Answer
Why we use stdio h in c?
Why is sprintf unsafe?
what would be the output of the follwing struct st { char name[20]; int i; float f; }; main() { struct st emp = {"forum"}; printf("%d %f",emp.i,emp.f); }
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
How many parameters should a function have?
char *p="name"; printf(p);
#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?
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
what is uses of .net
what is the height of tree if leaf node is at level 3. please explain
Is null always defined as 0(zero)?
I heard that you have to include stdio.h before calling printf. Why?