what does ‘#include’ mean?
how to build a exercise findig min number of e heap with list imlemented?
What is the use of the sizeof operator?
How do I use void main?
plz let me know how to become a telecom protocol tester. thank you.
how c source file in converted to exe file
What does c mean?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain what happens if you free a pointer twice?
#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); }
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
i want to asked a question about c program the question is: create a c program that displays all prime numbers less than 500? using looping statement