will u please send me the placement papers to my
mail???????????????????
No Answer is Posted For this Question
Be the First to Post Answer
What is the advantage of c?
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
Differentiate between the expression “++a” and “a++”?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What is meant by 'bit masking'?
What is the use of define in c?
Differentiate between the = symbol and == symbol?
How can variables be characterized?
wap in c to accept a number display the total count of digit
What is f'n in math?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?