What is the meaning of int *x[]();?
Answer / guest
x is a pointer to an array of function which takes no
arguments and returns int
| Is This Answer Correct ? | 1 Yes | 1 No |
What is calloc malloc realloc in c?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
how is the examination pattern?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
c program to subtract between two numbers without using '-' sign and subtract function.
Is a house a mass structure?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
How do I get an accurate error status return from system on ms-dos?
Is it fine to write void main () or main () in c?
What do you mean by recursion in c?
What are the different flags in C? And how they are useful? And give example for each in different consequences?
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }