Login
C Programming
1)
What is the notation for following functions?
1. int f(int a, float b)
{
/* Some code */
}
A)
KR Notation
B)
Pre ANSI C Notation
C)
ANSI Notation
D)
None of Above
Next
Show Answer:
Show Answer
More Question
What will be the output of the program #includestdio.h#define SQR(x)(xx)int main() int a, b=3; a = SQR(b+2); printf(d\n, a); return 0;
What is the output of the program typedef struct data; int x; sdata b;sdata;
Which of the following errors would be reported by the compiler on compiling the program given below #includestdio.hint main() int a = 5; switch(a) case 1: printf(First); case 2: printf(Second); case 3 + 2: printf(Third); case 5: printf(Final); break; return 0;
The library function used to find the last occurrence of a character in a string is
What will be the output of the program #includestdio.hint main() int i=2; printf(d, d\n, ++i, ++i); return 0;