What is a constant and types of constants in c?
No Answer is Posted For this Question
Be the First to Post Answer
Are the expressions * ptr ++ and ++ * ptr same?
what is event driven software and what is procedural driven software?
Tell us two differences between new () and malloc ()?
write a pgm to print 1 1 2 1 1 2 3 2 1 1 2 3 4 3 2 1
#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?
find out largest elemant of diagonalmatrix
write a c program to find biggest of 3 number without relational operator?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
while initialization of two dimensional arrays we can initialize like a[][2] but why not a[2][] is there any reason behind this?
c program to manipulate x=1!+2!+3!+...+n! using recursion
Explain the concept and use of type void.
what is the program to display your name in any color?