What is a structure in c language. how to initialise a structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the value of y in the following code? x=7;y=0; if(x=6) y=7; else y=1;
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Explain union.
Is c call by value?
What does nil mean in c?
How can you determine the maximum value that a numeric variable can hold?
What are the different types of constants?
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
what is the use of ~ in c lang?????
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What is the use of structure padding in c?
What are the scope of static variables?