Why functions are used in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C function to search a number in the given list of numbers. donot use printf and scanf
#define MAX 3 main() { printf("MAX = %d \n",MAX ); #undef MAX #ifdef MAX printf("Vector Instituteā); #endif
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
what are the languages used in c#?
Tell me when would you use a pointer to a function?
What is the best organizational structure?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
write a program wch produces its own source code aas its output?
Why does notstrcat(string, "!");Work?
Are the expressions * ptr ++ and ++ * ptr same?
what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }
mplementation of stack using any programing language