What are different types of operators?
No Answer is Posted For this Question
Be the First to Post Answer
What are Storage Classes in C ?
32 Answers CTS, HP, IBM, Maharaja Whiteline, Tamil Nadu Open University TNOU, TATA, TCS, Wipro,
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Explain what is the difference between text files and binary files?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Why is c called "mother" language?
#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā%dā ,a[i]); }
What are the scope of static variables?
read an array and search an element
WHO WROTE C LANGUAGE?
how can make variable not in registers
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);