Why does not c have an exponentiation operator?
No Answer is Posted For this Question
Be the First to Post Answer
p*=(++q)++*--p when p=q=1 while(q<=6)
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Explain the use of function toupper() with and example code?
What is indirect recursion? give an example?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
Tell me what is null pointer in c?
write a program to generate 1st n fibonacci prime number
4) Write a program that takes a 5 digit number and calculates 2 power that number and prints it. i have done maximum par but i m findind problem in the commented area. please help...
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
what is the little endian and big endian?