what is a constant pointer in C
What are linked lists in c?
What are derived data types in c?
Explain what does a function declared as pascal do differently?
Explain how do you list a file’s date and time?
Explain how do you print only part of a string?
c program to subtract between two numbers without using '-' sign and subtract function.
What is the purpose of scanf() and printf() functions?
#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?
Is file a keyword in c?
what different between c and c++
Tell me when is a void pointer used?
What is the meaning of int *x[]();?