What is a static function in c?
No Answer is Posted For this Question
Be the First to Post Answer
#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?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
How many header files are in c?
do u print this format '(((())))'. This brackets is based on user input like 4 or 5 or 6,without using any loop's?
How does pointer work in c?
what is a function prototype?
What are the different data types in C?
#define f(x) main() { printf("\n%d",f(2+2)); }
Can a local variable be volatile in c?
Write a c program to build a heap method using Pointer to function and pointer to structure ?
write a program in c language to print your bio-data on the screen by using functions.
6 Answers College School Exams Tests, IBM,
What is the basic structure of c?