Python Related (3312)
PHP Related (7341)
Scala (340)
R Programming (396)
Kotlin (184)
Apache Groovy (39)
Ruby (245)
Go Programming Language (139)
Objective-C (429)
Programming Languages AllOther (746) write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4
9 14928what is the output of the program and explain why??
#include
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
2 8247. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none
9 22678Given a piece of code int x[10]; int *ab; ab=x; To access the 6th element of the array which of the following is incorrect? (A) *(x+5) (B) x[5] (C) ab[5] (D) *(*ab+5} .
2 9236What is the output of the following progarm?
#include
What is the o/p of the follow pgm?
#include
#include
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
2 8285Is main() is used in the program,,see below example? void main() { int i; for(i=0;i<10;i++) main(); } Then what is the output of the program?
6 7393
Explain how can I manipulate strings of multibyte characters?
How the values are ordered in an array?
Explain about python break, continue and pass?
what are the ways in which a constructors can be called?
What is mean by data types in c?
Will the using WordPress help my site show up on Google?
What is a process and thread?
What is difference between isset and empty in php?
Tell me how the result set of mysql be handled in php?
Declare a class vehicle and make it an abstract data type.
What is difference between range and arange function in python?
How to configure route cache in laravel?
Write a C++ Program to check whether a number is prime number or not?
When to use nsautoreleasepool??
Why multiple inheritance is not allowed?