Explain the concept and use of type void.
No Answer is Posted For this Question
Be the First to Post Answer
How does #define work?
What is the Difference between Class and Struct?
How can I trap or ignore keyboard interrupts like control-c?
What is property type c?
How will you write a code for accessing the length of an array without assigning it to another variable?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }
Explain union.
Which is the memory area not included in C program? give the reason
What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none
hi, which software companys will take,if d candidate's % is jst 55%?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
any "C" function by default returns an a) int value b) float value c) char value d) a & b