which will return integer?
a) int*s ( )
b) ( int* ) s( )
c) int ( *s ) ( )
Answer / chandu
c) int (*s)()
s is pointer to a function which returns integer
| Is This Answer Correct ? | 10 Yes | 0 No |
What is a program?
Compare and contrast compilers from interpreters.
write a progam to compare the string using switch case?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
what is the use of ~ in c lang?????
how can i get this by using for loop? * ** * **** * ******
Write a program in C to reverse a number by recursive function?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
what are the general concepts of c and c++
What are the types of data types and explain?
what is the difference between declaration and definition of a variable or function ?
write a program of bubble sort using pointer?