How many data structures are there in c?
No Answer is Posted For this Question
Be the First to Post Answer
How to implement call back functions ?
What is the use of gets and puts?
Tell about strtok & strstr functions
2 Answers HCL, iFlex, Motorola,
can anyone proide me reading material on svit00ef27@yahoo.com please thanx in advance
What are the different types of pointers used in c language?
What is chain pointer in c?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What does struct node * mean?
Are local variables initialized to zero by default in c?
12345 1234 123 12 1
Differentiate between static and dynamic modeling.
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above