related proverb of "dont count your chicken before it hatches"
What is omp_num_threads?
Explain what will the preprocessor do for a program?
Design a program using an array that lists even numbers and odd numbers separately from the 12 numbers supplied by a user.
When should structures be passed by values or by references?
What is the purpose of the fflush() function in C?
Explain what is a static function?
Can we declare a function inside a function in c?
What are two dimensional arrays alternatively called as?
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
#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); }
main() { clrscr(); } clrscr();
What is pointer and structure in c?