Can you mix old-style and new-style function syntax?
No Answer is Posted For this Question
Be the First to Post Answer
Write a c pgm for leap year
11 Answers College School Exams Tests, IBM, TCS,
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com
How would you find a cycle in a linked list?
Write a program which returns the first non repetitive character in the string?
Explain what is the benefit of using enum to declare a constant?
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
#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?
WRITE A C PROGRAM TO FIND SECOND BIGGEST VALUE FROM THE GIVEN VALUES
Write a program that his output 1 12 123
What are header files in c programming?