Can you write the function prototype, definition and mention the other requirements.
No Answer is Posted For this Question
Be the First to Post Answer
what is c?
Can one function call another?
code for inverse a matrix
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
What is ## preprocessor operator in c?
what is develop in c language
swap 2 numbers without using third variable?
Explain how can you avoid including a header more than once?
write a program to copy the string using switch case?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
#include<stdio.h> #include<conio.h> struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question