What is the difference between union and structure in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What is restrict keyword in c?
who developed c and why he developed c?
What is typedef?
Why is main function so important?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
how do you execute a c program in unix.
how to swap two integers 1 and 32767 without using third variable
How can I dynamically allocate arrays?
What is array within structure?