Is c pass by value or reference?
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }
Disadvantages of C language.
Why we use conio h in c?
PLS U SENS ME INTERVIEW O. MY EMAIL ADD, SOFIYA.SINGH@GMAIL.COM
why we use pointer in c
what are the languages used in c#?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
What is switch in c?
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
What is const keyword in c?