How are structure passing and returning implemented?
What is data types?
What should malloc(0) do?
Where register variables are stored in c?
Describe dynamic data structure in c programming language?
Explain how do you print only part of a string?
how would a 4*3 array A[4][3] stored in Row Major Order?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
How can I invoke another program or command and trap its output?
How to declare pointer variables?
WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(“%d\n”,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none