whitch value return void main?
Answers were Sorted based on User's Feedback
How do you initialize pointer variables?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }
Differentiate between new and malloc(), delete and free() ?
a simple program in c language
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
What is call by value in c?
Should a function contain a return statement if it does not return a value?
What is a static function in c?
Why isnt there a numbered, multi-level break statement to break out
Ca some one please help me with aC code to allow user enter numbers from 1 to 20 without repeating and prnt the sum of those numbers thnx
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
SRUCTURE PROGRAMMING