List some applications of c programming language?
No Answer is Posted For this Question
Be the First to Post Answer
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
plz answer.. a program that takes a string e.g. "345" and returns integer 345
What is the purpose of the preprocessor directive error?
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
Explain what is the difference between declaring a variable and defining a variable?
void swap(int a,int b) { a=a+b; b=a-b; a=a-b; } in this code always gives the same result for all case
how would a 4*3 array A[4][3] stored in Row Major Order?
What is the difference between local variable and global variable in c?
What is function prototype in c with example?
What is volatile in c language?
#include<stdio.h> #include<conio.h> void main() { int m=0111,n=20; printf("%d%d\n",m,n); getch(); }
Which header file is used for clrscr?