What is void c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between struct and typedef struct in c?
Why clrscr is used after variable declaration?
#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?
f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c?
write a program to remove duplicate from an ordered char array? in c
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Why do we use & in c?
how can i make a program with this kind of output.. Enter a number: 5 0 01 012 0123 01234 012345 01234 0123 012 01 0
how to execute a program using if else condition and the output should enter number and the number is odd only...
what is the use of ‘auto’ keyword?
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
C program to perform stack operation using singly linked list