i=10,j=20
j=i,j?(i,j)?i:j:j
print i,j
write a program that prints a pascal triangle based on the user input(like how many stages) in an efficient time and optimized code?
related proverb of "dont count your chicken before it hatches"
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
How can I open files mentioned on the command line, and parse option flags?
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
List some basic data types in c?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
Is reference used in C?
what is d pitfalls of registers variables
Explain data types & how many data types supported by c?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]