#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?
Answer / nikhil kumar sahu
Error...
one Right parenthesis is missing for printf function
| Is This Answer Correct ? | 7 Yes | 0 No |
Give a method to count the number of ones in a 32 bit number?
the data type used for unlimited value in c and how to do this program
Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
What are valid signatures for the Main function?
how to find sum of 5 digits in C?
code for inverse a matrix
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
Write a program to remove the C comments(/* */) and C++ comments(//) from a file. The file should be declared in command line.
What is meant by 'bit masking'?
What is an object?
plssssss help !!....using array.. turbo c.. create a program that will accept number of words to be consored. .a word must not exceed 10 characters long .the text to be entered will be no longer than 200 characters .there will be no 10 words example: enter number of words to be censor: 5 enter words to censor: windows office microsoft bill gates enter text to censor: bill gates founded microsoft and makes office and windows sample output: <consored> <censored> founded <censored> and makes <censored> and <censored>