Describe wild pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
Can I initialize unions?
#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.
How can you tell whether a program was compiled using c versus c++?
What is size of union in c?
What is selection sort in c?
What is the function of multilevel pointer in c?
Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
What is an array? What the different types of arrays in c?
List some of the dynamic data structures in C?
what is the diference between pointer to the function and function to the pointer?
Explain void pointer?
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array