Explain what math functions are available for integers? For floating point?
No Answer is Posted For this Question
Be the First to Post Answer
What's the right way to use errno?
how to print this sereis 2 4 3 6 5..........?
how many errors in c explain deply
What language is windows 1.0 written?
write a program for the normal snake games find in most of the mobiles.
In a switch statement, explain what will happen if a break statement is omitted?
Lists the benefits of c programming language?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
#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?
if p is a string contained in a string?
Can we use visual studio for c?
how to get starting address of a running C program