What is wrong in this statement?
Answer / Sanjay Kumar Kanaojia
Information missing. Please provide the specific C statement for analysis.
| Is This Answer Correct ? | 0 Yes | 0 No |
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
What is the use of header files?
a<<1 is equivalent to a) multiplying by 2 b) dividing by 2 c) adding 2 d)none of the above
What is the difference between abs() and fabs() functions?
What is non linear data structure in c?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
What is cohesion and coupling in c?
List some basic data types in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }