What are # preprocessor operator in c?
No Answer is Posted For this Question
Be the First to Post Answer
How can I read and write comma-delimited text?
What are the applications of c language?
What is difference between structure and union in c programming?
What are 'near' and 'far' pointers?
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
State the difference between realloc and free.
write a program to swap Two numbers without using temp variable.
75 Answers EMC, Focus, GreyB, HCL, Hitech, HP, Huawei, Infosys, Mannar Company, Microsoft, Miles Software, Odessa Technologies, Satyam, TCS, Wipro,
why you will give me a job in TCS.
find the size of structure without using the size of function
to get a line of text and count the number of vowels in it
What are structure members?
how to print this pyramid * * * * * * * * * * * * *