What is main function in c?
No Answer is Posted For this Question
Be the First to Post Answer
helllo sir give me some information of the basic information the c as printf ,scanf , %d ,%f and why is the main use of these.
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What does %2f mean in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
#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 is stack , heap ,code segment,and data segment
What is calloc malloc realloc in c?
Explain Basic concepts of C language?
what are the languages used in c#?
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
What is function prototype?
how to write palindrome program?