how should functions be apportioned among source files?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
write a program to sort the elements in a given array in c language
What are the different types of C instructions?
wat s the meaning of (int *)p +4;
What is the Purpose of 'extern' keyword in a function declaration?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What do you mean by a local block?
what is the benefit of c30
get any number as input except 1 and the output will be 1.without using operators,expressions,array,structure.don't print 1 in printf statement
Eight queens puzzle
What is selection sort in c?