-
What will be the output of the c program ? #include<stdio.h> int main() { printf(“%c\n”, ~(‘C’*-1)); return 0; …
- 436 views
- 0 answers
- 0 votes
-
what would be output of the following c program #include<stdio.h> int main() { FILE *fp1, *fp2; fp1=fopen(“test.c”, “w”); fp2=fopen(“test.c”, “w”); …
- 493 views
- 0 answers
- 0 votes
-
Which of the following shows the correct hierarchy of arithmetic operations in C (1) / + * – (2) …
- 1K views
- 0 answers
- 0 votes
-
main( ) { int i ; for ( i = 1 ; i <= 5 ; printf ( “\n%d”, i …
- 453 views
- 0 answers
- 0 votes
-
Write a C program to calculate overtime pay of 10 employees.Overtime is paid at the rate of Rs. 12.00 per …
- 511 views
- 0 answers
- 0 votes
-
main( ) { int x = 4, y = 0, z ; while ( x >= 0 ) { …
- 466 views
- 0 answers
- 0 votes
-
main( ) { int j ; while ( j <= 10 ) { printf ( “\n%d”, j ) ; …
- 692 views
- 0 answers
- 0 votes
-
- 493 views
- 0 answers
- 0 votes
-
What is variable in C
- 448 views
- 0 answers
- 0 votes
-
What are the types of constants in C
- 318 views
- 0 answers
- 0 votes
-
What is constant in C
- 330 views
- 0 answers
- 0 votes
-
What is keyword in C
- 340 views
- 0 answers
- 0 votes
-
What is the use of sizeof() function in C
- 457 views
- 0 answers
- 0 votes
-
What is the difference between int, char, float and double data types
- 313 views
- 0 answers
- 0 votes
-
What is data type in C
- 328 views
- 0 answers
- 0 votes
-
Is C language case sensitive
- 309 views
- 0 answers
- 0 votes
-
What is header file in C language
- 319 views
- 0 answers
- 0 votes
-
What is IDE?
- 369 views
- 0 answers
- 0 votes
-
What are all the sections that a C program may have and must have?
- 290 views
- 0 answers
- 0 votes