Can the size of an array be declared at runtime?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
plz answer.. a program that takes a string e.g. "345" and returns integer 345
What is bss in c?
Write a c program to Find the name that you entered is male name or female name? Such as Sunjay is name of male and Payal is name of female
Simplify the program segment if X = B then C ← true else C ← false
How we can write a value to an address using macro..?
How to compare array with pointer in c?
Is there a way to switch on strings?
#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?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
How does the assert() function work?