how to swap 2 numbers in a single statement?
Answers were Sorted based on User's Feedback
What is the difference b/w main() in C language and main() in C++.
What is the difference between new and malloc functions?
Explain what is the stack?
What is difference between && and & in c?
#include <stdio.h> void main() { int i=-1,j=1,k,l; k=!i&&j; l=!i||j; printf ("%d%d",k,l) ; }
wap to print "hello world" without using the main function.
Write a pro-gramme to determine whether the number is even or odd?
Differentiate b/w Modify and Update commands giving example.
Can the curly brackets { } be used to enclose a single line of code?
What are the difference between a free-standing and a hosted environment?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Who developed c language?