a value that does not change during program execution
a) variabe
b) argument
c) parameter
d) none
How to find a missed value, if you want to store 100 values in a 99 sized array?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
i have a written test in tomorrow
How can I convert integers to binary or hexadecimal?
What is the difference between a function and a method in c?
what is the difference between while and do while?
i need all types of question paper releted to "c" and other language.
How important is structure in life?
how to set Nth bit of a variable?
what is function pointer?
please can some one guide me, to the answer Write a C program to enter 15 numbers as an input from the keyboard and program will find and print odd numbers and their average. i have studied while and do while loop for loop if and else if switch
#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?