any "C" function by default returns an
a) int value
b) float value
c) char value
d) a & b
No Answer is Posted For this Question
Be the First to Post Answer
where can function pointers be used?
Explain how do you convert strings to numbers in c?
What are inbuilt functions in c?
#include<stdio.h> #include<conio.h> int main() { int a[4][4]={{5,7,5,9}, {4,6,3,1}, {2,9,0,6}}; int *p; int (*q)[4]; p=(int*)a; q=a; printf("\n%u%u",p,q); p++; q++; printf("\n%u%u",p,q); getch(); return 0; } what is the meaning of this program?
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
Explain the difference between call by value and call by reference in c language?
An interactive c program to read basic salary of 15 persons. each person gets 25% of basic as HRA, 15%of basic as conveyance allowances, 10%of basic as entertainment allowances.The total salary is calculated by adding basic+HRA+CA+EA.Calculate how many out of 15 get salary above 10,000.Rs also print the salary of each employee
What is the difference between NULL and NUL?
Please list all the unary and binary operators in C.
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
What is pragma c?
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?