related proverb of "dont count your chicken before it hatches"
Is it better to use malloc() or calloc()?
What is memory leak in c?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
Is there any demerits of using pointer?
#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 are bitwise shift operators in c programming?
What is the method to save data in stack data structure type?
What are loops in c?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Write a program to interchange two variables without using the third variable?
17 Answers Accenture, College School Exams Tests, Infotech,
Explain pointer. What are function pointers in C?
What is a pointer in c?