What is struct node in c?
No Answer is Posted For this Question
Be the First to Post Answer
#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.
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
How do I use strcmp?
What is the significance of an algorithm to C programming?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
what is the difference between procedure oriented and object oriented progaming language
How can I read data from data files with particular formats?
what do you mean by inline function in C?
When should structures be passed by values or by references?
Can we increase size of array in c?
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Can we compile a program without main() function?