How can I recover the file name given an open stream or file descriptor?
No Answer is Posted For this Question
Be the First to Post Answer
which of the function operator cannot be over loaded a) <= b)?: c)== d)*
10 Answers Cisco, CTS, Google, HCL, HP,
Where we use clrscr in c?
Why functions are used in c?
write a program of palindrome(madam=madam) using pointer?
What is a const pointer in c?
what is real time system?what is the differance between hard and soft real time systems
#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 printf a keyword?
what are the stages of compilation
Explain why C language is procedural?
Write a program in c using only loops to print * * * * * *******
Can i use Two or More Main Funtion in any C program.?