How can I use a preprocessorif expression to ?
No Answer is Posted For this Question
Be the First to Post Answer
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
What are high level languages like C and FORTRAN also known as?
What is class and object in c?
What is omp_num_threads?
Given an unsigned integer, find if the number is power of 2?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Why cant I open a file by its explicit path?
Why is sprintf unsafe?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
How do I get an accurate error status return from system on ms-dos?
What is a rvalue?