#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 |
whether itis a structured language?
SRUCTURE PROGRAMMING
What is the use of extern in c?
What are header files and what are its uses in C programming?
which type of aspect you want from the student.
Define a structure to store roll no, name and marks of a student. Using the structure of above write a ‘C’ program to create a file “student.dat”. There must be one record for every student in the file. Accept the data from the user.
Explain what is the heap?
How pointer is benefit for design a data structure algorithm?
write a program to find the largest and second largest integer from an array
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
using only #include <stdio.h> and #include <stdlib.h> Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.
Explain bitwise shift operators?