What is the use of sizeof () in c?
No Answer is Posted For this Question
Be the First to Post Answer
main() { int a[10]; printf("%d",*a+1-*a+3); }
What is a void pointer in c?
How can we see the Expanded source code and compiled code for our source program in C?
How can you restore a redirected standard stream?
What do you mean by Recursion Function?
How to receive strings with spaces in scanf()
How to declare a variable?
how is the examination pattern?
write a program to print the one dimensional array.
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
What are preprocessor directives?
What is the difference b/w main() in C language and main() in C++.