Is c easier than java?
No Answer is Posted For this Question
Be the First to Post Answer
What is a node in c?
Explain 'bit masking'?
who is the founder of c
19 Answers College School Exams Tests, HP,
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
what is difference between array of characters and string
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
#include <stdio.h> #define sqr(x) (x*x) int main() { int x=2; printf("value of x=%d",sqr(x+1)); } What is the value of x?
16 Answers Accel Frontline, Opera, Oracle,
What does emoji p mean?
Is javascript written in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
What is the use of volatile?