What is uint8 in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the types of i/o functions?
What are compound statements?
What is the use of keyword VOLATILE in C?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
what is the output of below int n=10; (n++)++; printf("%d",n);
How can I direct output to the printer?
WAP to find that given no is small or capital
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
What kind of structure is a house?
#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?
Explain is it valid to address one element beyond the end of an array?